MySQL資料匯入匯出牛刀小試
最近學習了下MySQL中資料的匯入匯出,發現功能點真是豐富,很方便很快捷。
這些匯入匯出的方式還是有不少的細節的,在此先不做擴充套件和深入分析。
--資料匯出 方式1
比如要實現資料的匯出,直接可以指定生成的檔案使用outfile即可。對於空值的處理是“\N"
mysql> select * from test into outfile '/u02/mysql/dump/a.sql';
Query OK, 4 rows affected (0.00 sec)
1 aaaa
2 bbbb
3 c
4 \N
--資料匯出 方式2
如果需要匯出某個資料庫下的表結構和資料,使用mysqldump也是不錯的選擇。生成的檔案中,.txt是對應的資料,.sql是對應的表結構sql。
mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| test |
| test1 |
+----------------+
2 rows in set (0.00 sec)
mysqldump -T /u02/mysql/dump -u root test
匯出後檢視目錄結構。
[mysql@oel1 dump]$ ll
total 8
-rw-r--r-- 1 mysql dba 1338 Apr 11 22:39 test1.sql
-rw-rw-rw- 1 mysql dba 0 Apr 11 22:39 test1.txt
-rw-r--r-- 1 mysql dba 1364 Apr 11 22:39 test.sql
-rw-rw-rw- 1 mysql dba 0 Apr 11 22:39 test.txt
--資料匯出 方式3
這種方式,直接把sql語句透過引數傳入,確實很贊。注意這個時候生成的空值是NULL,而不是"\N"
[mysql@oel1 dump]$ mysql -u root --execute="select *from test;" test > aa.sql
[mysql@oel1 dump]$ cat aa.sql
id name
1 aaaa
2 bbbb
3 c
4 NULL
[mysql@oel1 dump]$ cat ../a.sql
1 aaaa
2 bbbb
3 c
4 \N
--資料匯出 方式4
如果這個時候需要匯出的表中列較多,可以透過鍵值對的方式縱向顯示。可讀性就大大增強了。比如下面的方式。
[mysql@oel1 dump]$ mysql -u root --vertical --execute="select *from test;" test > aa.sql
[mysql@oel1 dump]$ cat aa.sql
*************************** 1. row ***************************
id: 1
name: aaaa
*************************** 2. row ***************************
id: 2
name: bbbb
*************************** 3. row ***************************
id: 3
name: c
*************************** 4. row ***************************
id: 4
name: NULL
注意這個時候,我指定sql語句以”;"結尾,和不加結尾符的效果是一樣的,可見這個時候還是有一定的健壯性。
[mysql@oel1 dump]$ mysql -u root --vertical --execute="select *from test" test > aa.sql
[mysql@oel1 dump]$ cat aa.sql
*************************** 1. row ***************************
id: 1
name: aaaa
*************************** 2. row ***************************
id: 2
name: bbbb
*************************** 3. row ***************************
id: 3
name: c
*************************** 4. row ***************************
id: 4
name: NULL
--資料匯出 方式5
如果需要匯出的資料為html格式,也很清晰。直接呼叫-html選項即可。
mysql -u root --html --execute="select *from test" test > aa.html
mysql@oel1 dump]$ cat aa.html
[mysql@oel1 dump]$
--資料匯出 方式6
如果指定匯出資料格式為xml,直接呼叫-xml選項即可。
[mysql@oel1 dump]$ mysql -u root --xml --execute="select *from test" test > aa.html
[mysql@oel1 dump]$ cat aa.html
1
aaaa
2
bbbb
3
c
4
--資料匯出 方式7
如果希望把資料的結果快取出來,使用-tee也是一種選擇,這種方式會匯出所有的操作結果,可以根據自己的需要來做匯出。
mysql> tee a.log
Logging to file 'a.log'
mysql> select *from test;
Empty set (0.00 sec)
mysql> select *from test1;
Empty set (0.00 sec)
mysql> notee;
Outfile disabled.
這個時候會把sql和對應的資料結果都生成在日誌裡面。
--資料匯入 方式1
資料的匯入可以在mysql命令裡面使用load data的方式來實現,也是比較輕巧的。
mysql> load data infile '/u02/mysql/dump/a.sql' into table test.test ;
Query OK, 4 rows affected (0.01 sec)
Records: 4 Deleted: 0 Skipped: 0 Warnings: 0
mysql> select *from test;
+------+------+
| id | name |
+------+------+
| 1 | aaaa |
| 2 | bbbb |
| 3 | c |
| 4 | NULL |
| 1 | aaaa |
| 2 | bbbb |
| 3 | c |
| 4 | NULL |
+------+------+
8 rows in set (0.00 sec)
--資料匯入 方式2
資料匯入還可以使用mysqlimport來實現,比如我們需要匯入的表為test,資料檔案為test.txt
[mysql@oel1 dump]$ mysqlimport -u root test '/u02/mysql/dump/test.txt'
test.test: Records: 0 Deleted: 0 Skipped: 0 Warnings: 0
這些匯入匯出的方式還是有不少的細節的,在此先不做擴充套件和深入分析。
--資料匯出 方式1
比如要實現資料的匯出,直接可以指定生成的檔案使用outfile即可。對於空值的處理是“\N"
mysql> select * from test into outfile '/u02/mysql/dump/a.sql';
Query OK, 4 rows affected (0.00 sec)
1 aaaa
2 bbbb
3 c
4 \N
--資料匯出 方式2
如果需要匯出某個資料庫下的表結構和資料,使用mysqldump也是不錯的選擇。生成的檔案中,.txt是對應的資料,.sql是對應的表結構sql。
mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| test |
| test1 |
+----------------+
2 rows in set (0.00 sec)
mysqldump -T /u02/mysql/dump -u root test
匯出後檢視目錄結構。
[mysql@oel1 dump]$ ll
total 8
-rw-r--r-- 1 mysql dba 1338 Apr 11 22:39 test1.sql
-rw-rw-rw- 1 mysql dba 0 Apr 11 22:39 test1.txt
-rw-r--r-- 1 mysql dba 1364 Apr 11 22:39 test.sql
-rw-rw-rw- 1 mysql dba 0 Apr 11 22:39 test.txt
--資料匯出 方式3
這種方式,直接把sql語句透過引數傳入,確實很贊。注意這個時候生成的空值是NULL,而不是"\N"
[mysql@oel1 dump]$ mysql -u root --execute="select *from test;" test > aa.sql
[mysql@oel1 dump]$ cat aa.sql
id name
1 aaaa
2 bbbb
3 c
4 NULL
[mysql@oel1 dump]$ cat ../a.sql
1 aaaa
2 bbbb
3 c
4 \N
--資料匯出 方式4
如果這個時候需要匯出的表中列較多,可以透過鍵值對的方式縱向顯示。可讀性就大大增強了。比如下面的方式。
[mysql@oel1 dump]$ mysql -u root --vertical --execute="select *from test;" test > aa.sql
[mysql@oel1 dump]$ cat aa.sql
*************************** 1. row ***************************
id: 1
name: aaaa
*************************** 2. row ***************************
id: 2
name: bbbb
*************************** 3. row ***************************
id: 3
name: c
*************************** 4. row ***************************
id: 4
name: NULL
注意這個時候,我指定sql語句以”;"結尾,和不加結尾符的效果是一樣的,可見這個時候還是有一定的健壯性。
[mysql@oel1 dump]$ mysql -u root --vertical --execute="select *from test" test > aa.sql
[mysql@oel1 dump]$ cat aa.sql
*************************** 1. row ***************************
id: 1
name: aaaa
*************************** 2. row ***************************
id: 2
name: bbbb
*************************** 3. row ***************************
id: 3
name: c
*************************** 4. row ***************************
id: 4
name: NULL
--資料匯出 方式5
如果需要匯出的資料為html格式,也很清晰。直接呼叫-html選項即可。
mysql -u root --html --execute="select *from test" test > aa.html
mysql@oel1 dump]$ cat aa.html
id | name |
---|---|
1 | aaaa |
2 | bbbb |
3 | c |
4 | NULL |
--資料匯出 方式6
如果指定匯出資料格式為xml,直接呼叫-xml選項即可。
[mysql@oel1 dump]$ mysql -u root --xml --execute="select *from test" test > aa.html
[mysql@oel1 dump]$ cat aa.html
1
aaaa
2
bbbb
3
c
4
--資料匯出 方式7
如果希望把資料的結果快取出來,使用-tee也是一種選擇,這種方式會匯出所有的操作結果,可以根據自己的需要來做匯出。
mysql> tee a.log
Logging to file 'a.log'
mysql> select *from test;
Empty set (0.00 sec)
mysql> select *from test1;
Empty set (0.00 sec)
mysql> notee;
Outfile disabled.
這個時候會把sql和對應的資料結果都生成在日誌裡面。
--資料匯入 方式1
資料的匯入可以在mysql命令裡面使用load data的方式來實現,也是比較輕巧的。
mysql> load data infile '/u02/mysql/dump/a.sql' into table test.test ;
Query OK, 4 rows affected (0.01 sec)
Records: 4 Deleted: 0 Skipped: 0 Warnings: 0
mysql> select *from test;
+------+------+
| id | name |
+------+------+
| 1 | aaaa |
| 2 | bbbb |
| 3 | c |
| 4 | NULL |
| 1 | aaaa |
| 2 | bbbb |
| 3 | c |
| 4 | NULL |
+------+------+
8 rows in set (0.00 sec)
--資料匯入 方式2
資料匯入還可以使用mysqlimport來實現,比如我們需要匯入的表為test,資料檔案為test.txt
[mysql@oel1 dump]$ mysqlimport -u root test '/u02/mysql/dump/test.txt'
test.test: Records: 0 Deleted: 0 Skipped: 0 Warnings: 0
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23718752/viewspace-1564990/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mysql資料匯入匯出MySql
- mysql資料匯出匯入MySql
- mysql 資料庫匯入匯出MySql資料庫
- MySQL資料庫匯入匯出MySql資料庫
- 資料庫 MySQL 資料匯入匯出資料庫MySql
- MySQL入門--匯出和匯入資料MySql
- 【mysql】資料庫匯出和匯入MySql資料庫
- mysql匯入匯出.csv格式資料MySql
- mysqldump匯入匯出mysql資料庫MySql資料庫
- MySQL表資料匯入與匯出MySql
- Mysql 資料庫匯入與匯出MySql資料庫
- sqlldr批量匯入匯出資料測試SQL
- sqlldr批次匯入匯出資料測試SQL
- MySQL資料匯入匯出亂碼問題MySql
- SQLServer匯出匯入資料到MySQLServerMySql
- Mysql匯入&匯出MySql
- Mysql匯入匯出MySql
- 資料泵匯出匯入
- Oracle 資料匯入匯出Oracle
- Oracle資料匯入匯出Oracle
- MySQL資料匯入匯出之Load data fileMySql
- MySQL資料匯入匯出方法與工具介紹MySql
- 【MySQL】白話說MySQL(五),資料的匯出與匯入MySql
- mysql 命令匯入匯出MySql
- mysql匯入匯出慢MySql
- mysql 匯入、匯出命令MySql
- mysql匯出資料MySql
- MySQL 匯出資料MySql
- sqoop資料匯入匯出OOP
- 資料匯入匯出EXP/IMP
- MongoDB資料匯入與匯出MongoDB
- mysqldump匯入匯出表資料MySql
- exp/imp匯出匯入資料
- postgresql 資料匯入和匯出SQL
- 資料庫的匯入匯出資料庫
- 資料泵的匯入匯出
- 資料泵匯出匯入表
- mysql匯入匯出資料中文亂碼解決方法小結MySql