大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
create trigger DataProarea on testtable
创新互联建站专注为客户提供全方位的互联网综合服务,包含不限于网站设计制作、成都做网站、钟山网络推广、小程序定制开发、钟山网络营销、钟山企业策划、钟山品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;创新互联建站为所有大学生创业者提供钟山建站搭建服务,24小时服务热线:13518219792,官方网址:www.cdcxhl.com
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
在sql中
空值有NULL 和''的形式
当是NULL的时候用 IS NULL判断
当是''的时候用 =''判断
比如
select * from table where enddate IS NULL;
select * from table where str='';
sql
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
1、创建测试表,
create table test_null(id varchar2(20),value varchar2(20));
2、插入测试数据;
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、查询表中全量数据;select t.*, rowid from test_null t;
4、编写语句,查询表中value为空的记录;
select t.*, rowid from test_null t where value is null;