select * from test1 where test1.icomcode not like
'(select test2.comcode from test2 where test1.icomcode=test2.comcode)'
test1_com |
test2_com |
111 |
555 |
222 |
666 |
333 |
444 |
444 |
555 |
555 |
222 |
666 |
888 |
test1_com 데이터가 test2_com 데이터와 다른것 111 , 333 을 찾는 쿼리문인데 전체 컬럼이 select 됩니다. 뭐가잘못된건가요? |