触发器的基础知识:create trigger tr_name on table/view{for | after | instead of } [update][,][insert][,][delete][with encryption]as {batch | if update (col_name) [{and|or} update (col_name)] } 说明:1 tr_name:触发器名称2 on table/view:触发器所作用的表.一个触发器只能作用于一个表3 for 和 af…