mysql與postgresql的表複製語句

來源:互聯網
上載者:User

在mysql中複製已有的表結構給一個新表的方法:

第一種方法:

create table custNew1 like customers;

這種方法只能被複製的表是什麼結構,新表就是什麼結構,無法在建表的同時進行增加新列的行為。不過新表會保留被複製表的索引結構。

 

第二種方法:

create table custNew2(id int auto_increment not null primary key) select * from customers;

這種方法是可以新添加列的,不過它不會保留被複製表的索引結構。上面這條語句不僅會把被複製表的結構複製過來,資料也會被複製。如果不想複製資料可以加'where'子句:

create table custNew2(id int auto_increment not null primary key) select * from customers where 1<>1;

 

在postgreSQL中複製已有的表結構方法:

select * into custNew from customers where 1<>1;

上面這句是只複製表結構,如果想要資料一起過來,把where子句刪除即可。它提索引也是不保留的。

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.