sql
公司主營業(yè)務:成都網(wǎng)站設計、成都網(wǎng)站制作、移動網(wǎng)站開發(fā)等業(yè)務。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)建站是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)建站推出新賓免費做網(wǎng)站回饋大家。
server
中使用
is
null
或
is
not
null
來處理列的空值。
語法為:
列名
is
null
(字段為空返回true
,不為空返回
false)
列名
is
not
null
(字段為空返回false,不為空返回
true)
例:
select
case
when
a
is
null
then
1
else
end
from
aaa
語法大意:如果a列
為空顯示1,不為空顯示0
在sql中
空值有NULL 和''的形式
當是NULL的時候用 IS NULL判斷
當是''的時候用 =''判斷
比如
select * from table where enddate IS NULL;
select * from table where str='';
create trigger DataProarea on testtable
for insert as
if exists(select * from inserted where TestFileds is null)
BEGIN
PRINT 'TestFileds是空值!'
ROLLBACK TRANSACTION
END
ELSE if not exists(select * from inserted join peopletable on inserted.TestFileds=peopletable.Peoplefileds)
begin
PRINT 'TestFileds的值在peopletable表的Peoplefileds中不存在!'
ROLLBACK TRANSACTION
end
GO
where a is null
不是用等號,是用關鍵字"is"
不為空就是 is not null
1、創(chuàng)建測試表,
create table test_null(id varchar2(20),value varchar2(20));
2、插入測試數(shù)據(jù);
insert into test_null values(1,'123');
insert into test_null values(2,'abc');
insert into test_null values(3,'');
insert into test_null values(4,'456');
3、查詢表中全量數(shù)據(jù);select t.*, rowid from test_null t;
4、編寫語句,查詢表中value為空的記錄;
select t.*, rowid from test_null t where value is null;