我有關於NULL和''(空)數據的問題。 下面是查詢空和空記錄查詢
with tempCTS
as(
select null as [blank])
select * from tempCTS t
輸出爲null
另一個查詢與空管檢查
with tempCTS
as(
select null as [blank])
select * from tempCTS t where t.blank <> ''
輸出繼電器是什麼
我的問題是,爲什麼空記錄不取一次黑色勾選放置
PS: - 我需要空和數據記錄,但沒有空字符串
在此先感謝。
你需要使用ISNULL或爲空,這取決於什麼DBMS您使用檢查空 – Sathya 2014-09-02 06:39:21
哪個DBMS ????? – 2014-09-02 06:41:16
sql server 2012 – 2014-09-02 06:42:45