1. MySQL基礎命令
-
1.資料庫登入 - 命令格式: mysql -h【主機地址】 -u【使用者名稱】 -p【使用者密碼】 -D 【資料庫】-P 【埠】
注意命令項與值之間不要存在空格
mysql -h127.0.0.1 -uroot -p123456 -Dtest
-
2.資料庫退出
mysql> exit; 或 quit;
-
3.獲取伺服器版本::
mysql> select version();
-
4. 查詢資料庫列表:
mysql> show databases;
-
5. 定位到某一個資料庫:
mysql> use test_db;
-
5. 定位到某一個資料庫:
mysql> use test_db;
-
6. 檢視當前所在資料庫:
mysql> select database();
-
7. 檢視資料庫當前時間:
mysql> select now();
-
8. 檢視資料庫的資料表列表:
mysql> show tables;
-
9. 檢視資料表結構:
mysql> desc [tablename]; #或者 mysql> describe [tablename];
-
10. 檢視資料庫版本:
mysql> show version();
-
11. 檢視資料庫儲存引擎:
常用的引擎有InnoDB、MyISAM
#檢視所支援的儲存引擎 mysql> show engines; # 檢視預設的儲存引擎 mysql> show variables like '%storage_engine';
-
12.修改資料庫儲存引擎:
mysql> alter table [tablename] type|engine=[enginename]; #示例,將資料表 test 儲存引擎設定為 InnoDB mysql> alter table test type=InnoDB; #或者 mysql> alter table test engine=InnoDB;
-
13.查詢mysql執行情況: 命令詳解參照
mysql> show status;