MySQL中select into 和SQL中的select into 比較

來源:互聯網
上載者:User

MySQL中select into 和SQL中的select into 比較

現在有張表為student,我想將這個表裡面的資料複製到一個為dust的新表中去。
answer 01:
create table dust select * from student;//用於複製前未建立新表dust的情況下
answer 02:
insert into dust select * from student;//已經建立了新表dust的情況下

現在使用select..into..語句實現以上東東。

MySQL不支援Select Into語句直接備份表結構和資料,一些種方法可以代替, 也有其它方法可以處理,總結如下:
方法1:
MYSQL不支援:
Select * Into new_table_name from old_table_name; 這是sql server中的用法
替代方法:
Create table new_table_name (Select * from old_table_name);


方法2:
1.先備份表結構和資料
#匯出命令 -u使用者名稱 -p密碼 -h主機IP地址 資料庫名 表名1 > 匯出檔案.sql
mysqldump -uroot -proot -h192.168.0.88 ok_db oktable2 > ok_db.sql

2.修改備份表的名字
3.登入MySQL
4.選擇資料庫
5.執行: Source 備份表的路徑 如:Source d:/ok_db.sql 斷行符號即可。
6.完成.


MySQL Select into outfile用於匯出指定的查詢資料到檔案如下:

1.匯出表中所有資料到C盤根目錄outfile.txt中如下:
Select * into outfile 'c://outfile.txt' from test;


2.匯出表中指定查詢條件2005-06-08號的資料到C盤根目錄outfile1.txt中如下:
Select * into outfile 'c://outfile.txt' from test where beginDate='2008-06-08';


mysql> load data local infile "d:/gpsdata.txt" into table positiondata fields terminated by ';' (userid,latitude,longitude,altitude,speed,innerid,repo
rttime,status);


LOAD DATA [LOW_PRIORITY CONCURRENT] [LOCAL] INFILE ’file_name.txt’
[REPLACE IGNORE]
INTO TABLE tbl_name
[FIELDS
[TERMINATED BY ’string’]
[[OPTIONALLY] ENCLOSED BY ’char’]
[ESCAPED BY ’char’ ]
]
[LINES
[STARTING BY ’string’]
[TERMINATED BY ’string’]
]
[IGNORE number LINES]
[(col_name_or_user_var,...)]
[SET col_name = eXPr,...)]

fields和lines在前面,(col_name_or_user_var,…)在後面 如果你使用的時候直接把要寫的這些屬性放在表名後面,這樣是不正確的,一定要寫到fields和lines的後面!

補充一點,A表資料 複製到B表,B表不能有自增ID

如果有自增ID,則不插入自增

insert into B (title) select title from A

本文永久更新連結地址:

相關文章

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.