首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

mysql查询字段是否为空

2024-08-01 来源:华佗小知识

mysql查询字段是否为空的方法:

1、不为空

Select   *   From   table_name Where id<>''
Select   *   From   table_name Where id!=''

2、为空

Select   *   From   table_name Where id=''
Select   *   From   table_name Where   ISNULL(id)

具体情况具体分析,如果字段是char和varchar型用 id=''可以;如果是int型用 ISNULL好些

推荐:

显示全文