M
Mudassir Iqbal
I want values from TabA which are not in TabB
Tab A
Fld A
1
2
3
4
5
Tab B
Fld A Fld B
1 65
2 65
4 65
4 66
5 66
i have tried
SELECT TabA.FldA
FROM TabA
where ((([TabA].[FldA]) not in (Select FldA from TabB
where Fldb=66)));
Ms Access XP is not supporitng the query
and
SELECT TabA.fldA
FROM TabA left join TabB on TabA.FldA = TabB.FldA
where
TabB.FldA is nUll and TabB.FldB=66;
returning Null
Pls help...
Mudassir Iqbal
Tab A
Fld A
1
2
3
4
5
Tab B
Fld A Fld B
1 65
2 65
4 65
4 66
5 66
i have tried
SELECT TabA.FldA
FROM TabA
where ((([TabA].[FldA]) not in (Select FldA from TabB
where Fldb=66)));
Ms Access XP is not supporitng the query
and
SELECT TabA.fldA
FROM TabA left join TabB on TabA.FldA = TabB.FldA
where
TabB.FldA is nUll and TabB.FldB=66;
returning Null
Pls help...
Mudassir Iqbal