mysql 查询出某字段的值不为空的语句
admin_lnc 发布于 8年前 (2015-08-20)
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=””可...
阅读(5606)评论(4)赞 (3)