1. 程式人生 > >mysql中查詢欄位為null或者不為null

mysql中查詢欄位為null或者不為null

mysql中查詢欄位為null或者不為null   在mysql中,查詢某欄位為空時,切記不可用 = null, 而是 is null,不為空則是 is not null   www.2cto.com   select * from table where column is null;   select * from table where column is not null;