sql 如何查询 空值的字段?

sql如何查询为空值的字段?字段里面是空值,不是NULL所以像这样的selectcount(id)fromstudentwherepwdisnull不能用如何查询空值字段... sql 如何查询 为空值的字段?
字段里面是空值,不是NULL
所以 像这样的 select count(id) from student where pwd is null 不能用

如何查询空值字段?
展开
 我来答
树懒学堂
2020-07-23 · TA获得超过411个赞
知道小有建树答主
回答量:257
采纳率:60%
帮助的人:25.2万
展开全部

SQL NULL 值

  • NULL 值代表遗漏的未知数据。

  • 默认地,表的列可以存放 NULL 值。

  • 如果表中的某个列是可选的,那么我们可以在不向该列添加值的情况下插入新记录或更新已有的记录。这意味着该字段将以 NULL 值保存。

  • NULL 用作未知的或不适用的值的占位符。

  • 注释:无法比较 NULL 和 0;它们是不等价的。

  • NULL 值的处理方式与其他值不同。

我们如何仅仅选取在 “Address” 列中带有 NULL 值的记录呢?

我们必须使用 IS NULL 操作符:

-from shulanxt

如果按照楼主的问题,利用 IS NULL 操作符是可以完成查询操作的,但是查询不出来可能是因为 pwd 字段是空格值,它的数据是已知的,就像“0”和“NULL”一样,所以建议去查看一下 pwd 字段的数据值的情况。

希望以上回答能对您有所帮助~望采纳~

小凝聊娱乐
高粉答主

2019-09-28 · 陪你聊聊那些新鲜的事儿
小凝聊娱乐
采纳数:174 获赞数:81184

向TA提问 私信TA
展开全部

sql查询空值的字段写法:SELECT A.字段 FROM student  A WHERE A.字段 LIKE'% %' (student为表名)

查询类似空值的写法:

1、查询名称有退格键:select * from t_bd_item_info  where charindex(char(8),item_name) > 0 go

2、查询名称有制表符tab:select * from t_bd_item_info  where charindex(char(9),item_name) > 0 go

3、查询名称有换行:select * from t_bd_item_info where charindex(char(10),item_name) > 0 go

4、查询名称有回车:select * from t_bd_item_info where charindex(char(13),item_name) > 0 go

5、查询名称的空格(前空格、后空格、所有空格):select * from t_bd_item_info where isnull(charindex(' ',item_name),0) > 0 go

6、查询名称的单引号:select * from t_bd_item_info where charindex(char(39),item_name) > 0 go

7、查询名称的双单引号:select * from t_bd_item_info where charindex(char(34),item_name) > 0 go

扩展资料

1、处理名称有退格键
update t_bd_item_info set item_name = replace(item_name,char(8),'')
where charindex(char(9),item_name) > 0 go

2、处理名称有制表符tab
update t_bd_item_info set item_name = replace(item_name,char(9),'')
where charindex(char(9),item_name) > 0 go

3、处理名称有换行  
update t_bd_item_info set item_name = replace(item_name,char(10),'')
where charindex(char(10),item_name) > 0 go

4、处理名称有回车  
update t_bd_item_info set item_name = replace(item_name,char(13),'')
where charindex(char(13),item_name) > 0 go

5、处理名称的空格(前空格、后空格、所有空格)
update t_bd_item_info set item_name = replace(rtrim(ltrim(item_name)),' ','')  
where isnull(charindex(' ',item_name),0) > 0  go

6、处理名称的单引号
update t_bd_item_info set item_name = replace(item_name,char(39),'')
where charindex(char(39),item_name) > 0 go

7、处理名称的双单引号
update t_bd_item_info set item_name = replace(item_name,char(34),'')
where charindex(char(34),item_name) > 0 go

参考资料:百度百科-结构化查询语言(SQL)

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友10ae3be
2009-07-10 · TA获得超过124个赞
知道小有建树答主
回答量:405
采纳率:0%
帮助的人:360万
展开全部
select count(id) from student where pwd = ''
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友94f02eb
2009-07-10 · TA获得超过8612个赞
知道大有可为答主
回答量:7955
采纳率:74%
帮助的人:4417万
展开全部
select count([id]) from student where pwd = ''
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友0951d78
2009-07-10 · TA获得超过1451个赞
知道小有建树答主
回答量:1727
采纳率:0%
帮助的人:1258万
展开全部
select count(*) from student where pwd is null
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式