詳細(xì)說明MySQL數(shù)據(jù)庫中有關(guān)source命令
發(fā)表時(shí)間:2023-07-22 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這篇文章主要介紹了MySQL 數(shù)據(jù)庫 source 命令詳解及實(shí)例的相關(guān)資料,需要的朋友可以參考下MySQL 數(shù)據(jù)庫 source 命令詳解及實(shí)例MySQL 數(shù)據(jù)庫 source 命令,該命令是數(shù)據(jù)...
這篇文章主要介紹了MySQL 數(shù)據(jù)庫 source 命令詳解及實(shí)例的相關(guān)資料,需要的朋友可以參考下
MySQL 數(shù)據(jù)庫 source 命令詳解及實(shí)例
MySQL 數(shù)據(jù)庫 source 命令,該命令是數(shù)據(jù)庫導(dǎo)入命令。source 命令的用法非常簡單,首先你需要進(jìn)入 MySQL 數(shù)據(jù)庫的命令行管理界面,然后選擇需要導(dǎo)入的數(shù)據(jù)庫,執(zhí)行 source 命令。如下圖所示。
MySql 數(shù)據(jù)庫 source 命令
mysql> use test
Database changed
mysql> set names utf8;
Query OK, 0 rows affected (0.00 sec)
mysql> source C:/test.sql
Query OK, 0 rows affected (0.00 sec)
Query OK, 0 rows affected (0.33 sec)
Query OK, 0 rows affected (0.07 sec)
Query OK, 1 row affected (0.02 sec)
Query OK, 1 row affected (0.03 sec)
Query OK, 1 row affected (0.02 sec)
mysql> set names gbk;
Query OK, 0 rows affected (0.00 sec)
提示:
1、在 Windows 中文件路徑要用“/”替換默認(rèn)的路徑符“\”,如:
mysql> source C:/test.sql
2、確保腳本文件(.sql / .ddl)的字符編碼是 utf8;
3、在運(yùn)行 source 命令前先執(zhí)行命令:set names utf8;
mysql> set names utf8;
mysql> source C:/test.sql
4、在運(yùn)行 source 命令后如果需要在命令行正確查看中文,先執(zhí)行命令:set names gbk;修改命令行窗口字符編碼。如下:
mysql> set names gbk;
mysql> select * from user;
以上就是詳解MySQL數(shù)據(jù)庫中有關(guān)source命令的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。