gpt4 book ai didi

sql - 执行空值记录

转载 作者:行者123 更新时间:2023-12-01 08:04:25 24 4
gpt4 key购买 nike

我正在尝试执行表 NewTimeAttendance 中具有 TotalTime null 值的记录...TotalTime 数据类型 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 值..!!

它是一个小的选择语句..为什么它不起作用?有没有一种方法(特殊方法)可以使用 nchar 类型执行“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

关于sql - 执行空值记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2452783/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com