select * from tb_test where sss<>'" aaa & "' and sss<>'" bbb & "' and sss<>'" ccc & "'"

解决方案 »

  1.   

    select * from sss where tb_test not in ( 'aaa','bbb','ccc')
      

  2.   

    select * from tb_test where sss not in ( 'aaa','bbb','ccc')
      

  3.   

    select * from tb_test where sss not in ('aaa','bbb,'ccc')
      

  4.   

    select * from tb_test where sss not in ( 'aaa','bbb','ccc')
      

  5.   

    select * from tb_test where sss not in ('aaa','bbb,'ccc')