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

MySQL select into,SQLServer select into

編輯:MySQL綜合教程

以下的文章主要介紹的是MySQL select into 與 SQLServer select  into,我們大家都知道MySQL數據庫是對Select Into 語句的直接備份表的結構與相關實際應用數據是不支持的,由於工作中的需要在網上找到一種方法可以代替, 也有其它方法可以處理,總結如下:

方法1:

MYSQL不支持:

  1. Select * Into new_table_name from old_table_name 

替代方法:

  1. Create table new_table_name (Select * from old_table_name); 

方法2:

1.先備份表結構和數據

導出命令 -u用戶名 -p密碼 -h主機IP地址 數據庫名 表名1 > 導出文件.sql

  1. 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.完成.

SQLServer支持 MySQL Select into語句

1.備份表直接執行如下就可以了。

  1. Select * Into new_table_name from old_table_name; 

MySQL Select into outfile用於導出指定的查詢數據到文件如下:

1.導出表中所有數據到C盤根目錄outfile.txt中如下:

  1. Select * into outfile 'c:\\outfile.txt' from test; 

2.導出表中指定查詢條件2005-06-08號的數據到C盤根目錄outfile1.txt中如下:

  1. Select * into outfile 'c:\\outfile.txt' from test where beginDate='2008-06-08'; 

來源:百度
 

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