码迷,mamicode.com
首页 > 数据库 > 详细

sqlserver中not in 和 <> 获取为null的数据

时间:2020-05-12 13:50:35      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:into   where   ble   table   union all   sel   sql   arch   union   

 
DECLARE @table TABLE(
 id INT IDENTITY(1,1),
 name VARCHAR(100) null
)

INSERT INTO @table
(
    name
)
SELECT NULL UNION ALL
SELECT ‘aa‘ UNION ALL
SELECT ‘bb‘ UNION ALL
SELECT ‘cc‘


SELECT * FROM @table WHERE name <> ‘aa‘ --取不到null数据

SELECT * FROM @table WHERE ISNULL(name,‘‘) <> ‘aa‘

SELECT * FROM  @table WHERE name NOT IN( ‘aa‘,‘bb‘) --取不到null数据

SELECT * FROM  @table WHERE ISNULL(name,‘‘) NOT IN( ‘aa‘,‘bb‘)

sqlserver中not in 和 <> 获取为null的数据

标签:into   where   ble   table   union all   sel   sql   arch   union   

原文地址:https://www.cnblogs.com/dengjb/p/12875445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!