drop table if exists tab1;
 
create table tab1 (
  tab1_id int
)
 
drop table if exists tab2;
 
create table tab2 (
  tab2_id int
)
登录后复制
09-13 20:17