回覆列表
-
1 # 使用者852182926456
-
2 # 大M姐姐
980515 精頂企業有限公司 簡家豪 NULL 980514 全欣木業有限公司 NULL 123 980514 迅億科技股份有限公司 簡逢浚 NULL 980515 聖越國際企業有限公司 NULL 111 表結構如上所示,要查詢C列為空的記錄的SQL語句不是select * from table where c=null; 或者 select * from table where c=""; 而應當是 select * from table where c is null; 相反地要查詢不為空的則應當是 select * from talbe where c
Select * from xxx where xxxx=""
空不是null 如果是null可以 select * from xxx where Xxxx is null
當然你也可以2句結合起來,
Where isnull(xxx,"")=""