摘要:
--只管插入,用触发器来判断重复进行更新 create table v_tb(col1 INT,col2 INT) GO --不管你插入任何数据在v_tb中 create trigger my_tr on v_tb instead of insert as begin update b set b.col2=a.col2 from Inserted a, v_tb b ... 阅读全文
posted @ 2018-01-08 10:27
邹敏向日葵
阅读(255)
评论(0)
推荐(0)