sql触发器插入表内容时检查有无重复记录,有则提示不能插入,无则插入 10
问题描述:SQL有两张关联表以FintterID关联,A表记录单据的表头(制单,日期,客户,客户等信息),B表记录单据体(即比如商品明细)。在做单据时比如入库商品时,检查...
问题描述:SQL有两张关联表以FintterID关联,A表记录单据的表头(制单,日期,客户,客户等信息),B表记录单据体(即比如商品明细)。在做单据时比如入库商品时,检查记录B表里同一张单号的记录FQty,FbatchNo是否重复,重复则不插入,不重复则插入。求合位位大侠。小生学习。致谢!
展开
1个回答
展开全部
建议插入动作用存储过程完成。存储过程中的Insert语句前,前加if not exists ()。测试用例:
declare @FintterID as int
declare @FQty as decimal(10,2)
declare @FBatchNo as varchar(20)
set @FintterID=1783
set @FQty=137.28
set @FBatchNo='104013213120221005'
if not exists (select FBrNo from B where FintterID=@FintterID and FQty=@FQty and @FBatchNo=FBatchNo)
begin
Insert B (...) values (...)
end
declare @FintterID as int
declare @FQty as decimal(10,2)
declare @FBatchNo as varchar(20)
set @FintterID=1783
set @FQty=137.28
set @FBatchNo='104013213120221005'
if not exists (select FBrNo from B where FintterID=@FintterID and FQty=@FQty and @FBatchNo=FBatchNo)
begin
Insert B (...) values (...)
end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |