mysql複製表語句

2021-09-03 01:33:01 字數 778 閱讀 8443

1. 僅複製表結構

create

table my_table_copy2 like my_table;

2. 複製表結構和資料
create

table my_table_copy1 select

*from my_table;

注意:該語句只是按select語句執行的結果新建表,並不會複製表的主鍵、索引等資訊。

3. 完全複製表

真正完整複製表:

create

table my_table_copy2 like my_table;

insert

into my_table_copy2 select

*from my_table;

4. 複製表,同時重新定義欄位名
create

table my_table_copy3

select id,username yhm,realname xm,email dzyj,address dz from my_table;

5. 複製表,同時定義字段資訊
create

table my_table_copy4

(id integer

notnull

auto_increment

primary

key)

select

*from my_table;

mysql 複製表結構語句

mysql複製表資料操作相信大家都不會太陌生,下面就為您詳細介紹mysql複製表資料到新錶的步驟,希望對您會有所啟迪。1.mysql複製表結構及資料到新錶 create table 新錶 select from 舊表 2.只複製表結構到新錶 create table 新錶 select from 舊...

mysql 複製表結構語句

mysql複製表資料操作相信大家都不會太陌生,下面就為您詳細介紹mysql複製表資料到新錶的步驟,希望對您會有所啟迪。1.mysql複製表結構及資料到新錶 create table 新錶 select from 舊表 2.只複製表結構到新錶 create table 新錶 select from 舊...

mysql複製表資料 MySQL 複製表結構

介紹 有時候我們需要原封不動的複製一張表的表結構來生成一張新錶,mysql提供了兩種便捷的方法。例 create tabletb base idint not null primary key,namevarchar 10 keyix name name engine myisam charset ...