搜索
您的当前位置:首页mysql创建触发器的详细过程

mysql创建触发器的详细过程

时间:2020-11-09 来源:世旅网

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