美文网首页
mysql 数据表合并

mysql 数据表合并

作者: 安晓生 | 来源:发表于2020-03-30 13:17 被阅读0次
    类似这样
    
    create procedure merge_table()
    
    BEGIN
    
       select id,name into test3 from test2;
    
       insert into aa select id,name from test1;
    
       drop table test1;
    
       alter table test3 rename to test1;
    
    end;
    
    

    相关文章

      网友评论

          本文标题:mysql 数据表合并

          本文链接:https://www.haomeiwen.com/subject/pnxvuhtx.html