如何在SQL中设置插入时判断表中是否有该数据?
如:(insertvalues和where语句不能同时存在于一条语句中,所以报错,如何解决呢?)insertintotbTeam_dailyvalues(N'2011-1...
如:(insert values和where 语句不能同时存在于一条语句中,所以报错,如何解决呢?) insert into tbTeam_daily values(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组')
是不是只能用存储过程或前台进行控制? 展开
是不是只能用存储过程或前台进行控制? 展开
2个回答
展开全部
是这样的,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组');
2013-08-25
展开全部
不用,其实可以这样做
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组')
这样就行了
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组')
这样就行了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询