程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL中復制數據表中的數據到新表中的操作教程,mysql教程

MySQL中復制數據表中的數據到新表中的操作教程,mysql教程

編輯:MySQL綜合教程

MySQL中復制數據表中的數據到新表中的操作教程,mysql教程


MySQL是不支持SELECT … INTO語法的,使用INSERT INTO … SELECT替代相同用法,下面我們我們這裡簡答分一下新表存在和不存在兩種情況,具體使用不同的語句。
1.新表不存在
復制表結構即數據到新表

create table new_table
select * from old_talbe;

這種方法會將old_table中所有的內容都拷貝過來,用這種方法需要注意,new_table中沒有了old_table中的primary key,Extra,auto_increment等屬性,需要自己手動加,具體參看後面的修改表即字段屬性.
只復制表結構到新表

# 第一種方法,和上面類似,只是數據記錄為空,即給一個false條件
create table new_table
select * from old_table where 1=2;

# 第二種方法
create table new_table like old_table;

2.新表存在
復制舊表數據到新表(假設兩個表結構一樣)

insert into new_table
select * from old_table;

復制舊表數據到新表(假設兩個表結構不一樣)

insert into new_table(field1,field2,.....)
select field1,field2,field3 from old_table;

復制全部數據

select * into new_table from old_table;

只復制表結構到新表

select * into new_talble from old_table where 1=2;

3.實例

(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: 0 
 
mysql> create tabletest5 as select * from test1;  
//把表test1所有內容復制為test5 
QueryOK, 7 rows affected (0.11 sec) 
Records:7 Duplicates: 0 Warnings: 0 

 
(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: 0 
 
mysql> select * from test6; 
+----+-------+ 
| id | name | 
+----+-------+ 
| 1 | wu  | 
| 2 | terry | 
| 3 | tang | 
…… 
7 rows in set (0.00 sec) 

 

您可能感興趣的文章:

  • MySQL中表的復制以及大型數據表的備份教程
  • Mysql復制表結構、表數據的方法
  • MySQL快速復制數據庫數據表的方法
  • MySQL中表復制:create table like 與 create table as select
  • MySQL復制表結構和內容到另一張表中的SQL語句
  • mysql中復制表結構的方法小結
  • mysql把一個表某個字段的內容復制到另一張表的某個字段的SQL語句寫法
  • mysql跨數據庫復制表(在同一IP地址中)示例
  • MySQL 關於表復制 insert into 語法的詳細介紹
  • mysql復制中臨時表的運用技巧
  • MySQL數據表字段內容的批量修改、清空、復制等更新命令

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved