判断数据库某个字段是否为空
摘要:
sql 查询某字段为空 select * from 表名 where 字段名 is null sql 查询某字段不为空 select * from 表名 where 字段名 is not null sql查询字段1为空且字段2不为空的数据 select * from 表名 where 字段名1 is 阅读全文
posted @ 2019-07-26 16:07 黎明NB 阅读(5847) 评论(0) 推荐(0) 编辑