张小狗儿 2016-07-29 07:28 采纳率: 0%
浏览 2057

SQLSERVER触发器如何DEBUG

用的SQL SERVER2012 VS版本是10 不能调试似乎

  • 写回答

2条回答 默认 最新

  • 张小狗儿 2016-07-29 07:27
    关注

    create trigger trigger_ProductGoods_update
    on t_yms_Products
    after update
    as
    declare @fid varchar(20), @fstandard numeric(19, 2);
    select @fid = fid,@fstandard = fstandard from inserted;
    if
    ((select min(t.fsupplierprice) from t_yms_SupplierProduct t
    left join t_yms_stockComparison t1 on t1.FId = t.FstockComparisonID
    where t1.FproductGoodsID = @fid and t.Fstatus=1 and
    datediff(second,t.FLastUpdateTime,GETDATE())<(select FconfigValue from t_yms_systemconfig where FconfigName='供应商库存有效期')*3600)) <= @fstandard
    begin
    print'开始执行'
    update t_yms_products set Fdiscount = 1 where fid = @fid
    print' 执行更新'
    end

    评论

报告相同问题?

悬赏问题

  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?