今天学习SQL Server数据库中DML触发器(DDL触发器以后有时间继续学习). 当删除一条创建有触发器的表中的内容时,触发器执行SQL语句. 1.首相先创建一张表,表名称是 [Test] , 内有三个字段,分别是 [Name], Sex, Place. use inter create table Test ( ) not null, Sex ) not null, Place ) not null ) 2.然后为表中的字段添加内容: use inter insert into Test…