mysql查詢欄位不為空的方法:1、利用「select * from table_name where id <> "";」語句查詢;2、利用「select * from table_name where id != "";”語句查詢。
本教學操作環境:windows10系統、mysql8.0.22版本、Dell G3電腦。
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=""可以的;如果欄位是int型別的,使用isNull會好些。
以上是mysql如何查詢不為空的字段的詳細內容。更多資訊請關注PHP中文網其他相關文章!