mysql怎么查询不为空的字段mysql查询字段不为空的方法:1、利用“select * from table_name where id <> "";”语句查询;2、利用“select * from table_name where id != "";”语句查询。
1、查询不为空
select*fromtablewhereid<>"";select*fromtablewhereid!="";
2、查询为空
select*fromtablewhereid="";select*fromtablewhereisNull(id);
如果字段是char或者varchar类型的,使用id=""可以的;如果字段是int类型的,使用isNull会好些。