select * from table1 where id not in (select dinstinct table1_id from table2)

解决方案 »

  1.   

    笔误,改改
    select * from table1 where id not in (select distinct table1_id from table2)
      

  2.   

    Select * from table1 where id not in (select table1_id from table2)
      

  3.   

    select * from table1 where id not in (select table1_id from table2)
      

  4.   

    select * from table1 where id not in (select table1_id from table2)
      

  5.   

    select * from table1 where id not in (select table1_id from table2)