mysql创建触发器的详细过程

来源:这里教程网 时间:2026-02-28 08:34:49 作者:

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

相关推荐