Dears ;
I need a query:
Conditions :
I have three tables T1 , T2 and T3
Structure :
T1 :
ID1 Text1
1 ABC
2 XYZ
T2 :
ID2 ID1 ID3
1 1 2
2 1 3
T3 :
ID3 Text3
1 Snap
2 Stud
3 Custom
4 Knote
T1 is a master table and T2 is a table to make many to many relations. I need a query which gives me following results :
I want to populate T3 in a grid which has a first column as checkbox and I want to check that record which are present in T2. I want results as :
CheckBit Text3 ID3
0 Snap 1
1 Stud 2
1 Custome 3
0 Knote 4
Please help me out to solve this problem. I have tried all joins and Select Case statement but I am failed to solve this problem.
essa2000
I need a query:
Conditions :
I have three tables T1 , T2 and T3
Structure :
T1 :
ID1 Text1
1 ABC
2 XYZ
T2 :
ID2 ID1 ID3
1 1 2
2 1 3
T3 :
ID3 Text3
1 Snap
2 Stud
3 Custom
4 Knote
T1 is a master table and T2 is a table to make many to many relations. I need a query which gives me following results :
I want to populate T3 in a grid which has a first column as checkbox and I want to check that record which are present in T2. I want results as :
CheckBit Text3 ID3
0 Snap 1
1 Stud 2
1 Custome 3
0 Knote 4
Please help me out to solve this problem. I have tried all joins and Select Case statement but I am failed to solve this problem.
essa2000