摘要:
--创建表 CREATE TABLE a( a1 nvarchar(50) NULL, a2 int NULL ) --查询数据 select * from a --添加数据 insert into a values('1',2) --清除数据 truncate table a --触发器 alter trigger tri_insert_a on a INSTEAD OF insert as b 阅读全文
posted @ 2019-11-06 17:09
流星泪
阅读(476)
评论(0)
推荐(0)