mysql查询字段是否为空

mysql查询字段是否为空

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怎么查询数据库有多少表

数据库技术

相关文章