mysql中怎么查询为空的列名?

mysql中怎么查询为空的列名?mysql中怎么查询为空的列名?mysql中怎么查询为空的列名?

select * from 表名 where 字段名 is null or 字段名 = ‘’

查询为空的列名?还是查询为空的列的数据?

select * from usertable a where a.name is null

select * from 表名 where 字段名 is null;

select * from 表名 where 字段名 is null or 字段名 = '';

select * from tableName where filedName = null; tableName:表名,filedName:字段名

select * from 表名 where 字段名 is null;

是值为空的字段吧,我还重来没听过字段还能为空的

楼主表述能否明确点。。。到底是什么为空?一般只能是字段对应的值为空

mysql的栏位可以是空?你在逗我,这种表你是不可能创建出来的