SQL Server中,null 與not null 在什么時(shí)候用?
2 回答

慕田峪9158850
TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊
1.在定義表時(shí)
create table t1
(
id int not null , --默認(rèn)為可以為空
.......
)
2.在篩選字段時(shí),比如你定義郵箱驗(yàn)證表時(shí)把沒有驗(yàn)證郵箱的用戶Email_In的值為空,你要查詢沒有驗(yàn)證郵箱的用戶。要用到的 is null
select * from table where Email_In is null 反之(is not null)為驗(yàn)證過的用戶。
- 2 回答
- 0 關(guān)注
- 815 瀏覽
添加回答
舉報(bào)
0/150
提交
取消