您的位置:宽带测速网 > mysql教程 > mysql怎么查询不为空的字段

mysql怎么查询不为空的字段

2025-06-10 18:26来源:互联网 [ ]

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会好些。