MySQL表複製

來源:互聯網
上載者:User

MySQL表複製

MySQL Server doesn't support the SELECT ... INTO TABLE Sybase SQL extension. Instead, MySQL Serversupports the INSERT INTO ... SELECT standard SQLsyntax, which is basically the same thing.    //官方文檔說明

MySQL是不支援SELECT … INTO文法的,使用INSERT INTO … SELECT替代相同用法,以下是兩種表複製方法

1、  表不存在複製

mysql>show tables;+-----------------+|Tables_in_test1 |+-----------------+|cpu_stat        ||test1           ||test2           ||test3           |+-----------------+4rows in set (0.02 sec)mysql> create tabletest4 as select *  from test1 where 1=0; //僅複製表結構QueryOK, 0 rows affected (0.06 sec)Records:0  Duplicates: 0  Warnings: 0mysql> create tabletest5 as select *  from test1;  //把表test1所有內容複寫為test5QueryOK, 7 rows affected (0.11 sec)Records:7  Duplicates: 0  Warnings: 0mysql>

 

2、  表已經存在複製

mysql> create table test6(id int not null auto_increment primary key, name varchar(20));Query OK, 0 rows affected (0.13 sec)mysql> insert into test6(name)  select name from test1;//只複製name列Query OK, 7 rows affected (0.06 sec)Records: 7  Duplicates: 0  Warnings: 0mysql> select * from test6;+----+-------+| id | name  |+----+-------+|  1 | wu    ||  2 | terry ||  3 | tang  |……7 rows in set (0.00 sec)mysql>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.