飞翔范文网 > 电脑知识 >

mysql怎么查询不为空的字段

mysql查询字段不为空的方法:1、利用“select * from table_name where id <> "";”语句查询;2、利用“select * from table_name where id != "";”语句查询。

mysql怎么查询不为空的字段

1、查询不为空

select*fromtablewhereid<>"";select*fromtablewhereid!="";

2、查询为空

select*fromtablewhereid="";select*fromtablewhereisNull(id);

如果字段是char或者varchar类型的,使用id=""可以的;如果字段是int类型的,使用isNull会好些。

上一篇:MySQL索引创建原则是什么

下一篇:mysql临时表的作用是什么