mysql怎样查询不为空的字段

mysql怎么查询不为空的字段 1、查询不为空 select * from table where id ; select * from table where id != ; 2、查询为空 select * from table where id =; select * from table where isNull(id); 如果字段是char或者varchar类型的,使用id=可以的;如果