以下的文章主要介紹的是MySQL select into 與 SQLServer select into,我們大家都知道MySQL數據庫是對Select Into 語句的直接備份表的結構與相關實際應用數據是不支持的,由於工作中的需要在網上找到一種方法可以代替, 也有其它方法可以處理,總結如下:
方法1:
MYSQL不支持:
- Select * Into new_table_name from old_table_name
替代方法:
- 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.完成.
SQLServer支持 MySQL Select into語句
1.備份表直接執行如下就可以了。
- Select * Into new_table_name from old_table_name;
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';
來源:百度