您现在的位置是:课程教程文章

mysql查询字段是否为空

2023-12-18 18:52课程教程文章 人已围观

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

推荐:MySQL教程

课程教程:mysql查询字段是否为空

上一篇:python中lambda的用法

下一篇:没有了

站点信息

  • 文章统计篇文章