I want to filter exactly match rows from detail table. For Example in my filter cursor i have ('A101','B101') AssetCode
This is my detail Table
I am looking for MasterId of those AssetCode which are in my filter cursor.
Like MasterId 1 & 4 both having same AssetCode ('A101','B101') which is in my filter cursor.
My result should contain DetailID 1,2,9 and 11 with the same MasterID and AssetCode.
I don't want other Detail IDs because they are not fully matching with my Filter Cursor.
I have tried SubQuery and Joins but no use. Please help..
This is my detail Table
I am looking for MasterId of those AssetCode which are in my filter cursor.
Like MasterId 1 & 4 both having same AssetCode ('A101','B101') which is in my filter cursor.
My result should contain DetailID 1,2,9 and 11 with the same MasterID and AssetCode.
I don't want other Detail IDs because they are not fully matching with my Filter Cursor.
I have tried SubQuery and Joins but no use. Please help..