如何在SQL中设置插入时判断表中是否有该数据?

2024-10-28 04:51:50
推荐回答(2个)
回答(1):

是这样的,insert into...values...语句不允许和where子句一起使用的(子查询追加insert into...select...则可以在子查询里使用where子句)。要实现题主的这个需求,只能通过应程序端编程或在数据库端的存储过程里解决。

补充回答

后来我尝试了一下用 insert into...select..变通一下单凭SQL也可以解决,我在ACCESS里测试这个思路通过了。由于身边没有MSSQL环境,请题主测试下列代码,我想应该也是可以的

insert into tbTeam_daily select 
top 1 N'2011-12-2',N'3组',N'',N'23' from tbTeam_daily 
where not exists (select 1 from tbTeam_daily
where tdate = N'2011-12-2' and teamName = N'4组');

回答(2):

不用,其实可以这样做
insert into tbTeam_daily
select N'2011-12-2',N'3组',N'',N'23'
WHERE not exists (select * from tbTeam_daily where tdate = N'2011-12-2' and teamName = N'4组')
这样就行了