Table A
Column B : AA,BB,CC,DD,EE,FF
Table C
Column D : AA,BB,CC,GG,KK,MM
I need data from Table A which is not Present in Table C
Output Should be : DD,EE,FF
Tried Following :
Select A.B from A
Left Join C on A.B = C.D
where A.B not in(Select C from D)