我正在尝试执行具有TotalTime null表NewTimeAttendance…TotalTime数据类型的值的记录nchar(10)
TotalTime
null
NewTimeAttendance
nchar(10)
select * from newtimeattendance where TotalTime = 'NULL'
....没有
select * from newtimeattendance where TotalTime = 'null'
select * from newtimeattendance where TotalTime = 'Null'
select * from newtimeattendance where TotalTime = null
select * from newtimeattendance where TotalTime = Null
select * from newtimeattendance where TotalTime = NULL
当我选择整个表格时,我可以看到其中有一些NULL TotalTime值。
NULL
它是一个小的选择语句。为什么它不起作用?有没有一种方法(特殊方法)执行nchar类型为’NULL’的 !
nchar
提前致谢
您需要使用 IS NULL
IS NULL
select * from newtimeattendance where TotalTime IS NULL
MySQL文档具有一些有关处理NULL值的良好信息:http : //dev.mysql.com/doc/refman/5.0/en/working-with- null.html