当前位置:Gxlcms > mysql > mysql创建触发器的详细过程

mysql创建触发器的详细过程

时间:2021-07-01 10:21:17 帮助过:27人阅读

drop table if exists tab1;
 
create table tab1 (
  tab1_id int
)
 
drop table if exists tab2;
 
create table tab2 (
  tab2_id int
)

人气教程排行