1. 程式人生 > >mysql select 除某些條件外的語句

mysql select 除某些條件外的語句

 方法一:

  語法: select * from news where id not in(1,3,5);

   // 查詢在news表裡除id為1,3,5外的所有記錄。

 方法二:(很笨的方法)

  語法: select * from news where id!=1 and id!=3 and id!=5;

   // 查詢在news表裡除id為1,3,5外的所有記錄。