触发器

什么是触发器。

是用户定义在关系表上的一类由时间驱动的数据对象,

也是一种保证数据完整性的方法。

创建触发器

create trigger mysql_test.customers_insert_trigger after  insert

on mysql_test.customers for  each row set @str='one customer added!';

查询触发器

select * from @str;

删除触发器

drop  

你可能感兴趣的:(触发器)