select * from table where 1 and idx_code in (1,2,3,4,5)
idx_code값중에 1,2,3,4,5를 가져온다
select * from table where 1 and idx_code not in (1,2,3,4,5)
idx_code값중에 1,2,3,4,5아닌것을 가져온다
select * from table where 1 and idx_code in (select sidx_code table1 where 1)
검색된 내역중에 데이타 table1.sidx_code와 table.idx_code가 일치하는 내역만 호출