說明:<> 為必須指定該物件
[ ] 為可選項
為必選項
檢視mysql資料庫預設編碼
show variables like '%char%';
檢視當前資料庫編碼
show create database 《資料庫名》;
檢視當前資料庫下資料表的編碼
show create table 《表名》;
檢視指定資料表的編碼
show create table 《資料庫名.表名》;
檢視已建資料庫
show databases 《資料庫名》;
檢視當前資料庫中的所有表
show tables;
檢視指定資料庫下的所有表
show tables in 《資料庫名》;
檢視表的結構
show columns from 《表名》;
檢視表中的所有記錄
select * from 《表名》;
mysql bin指令集 mysql指令集
一 連線mysql。1 連線到本機上的mysql。首先開啟dos視窗,然後進入目錄mysql bin,再鍵入命令mysql u root p,回車後提示你輸密碼.注意使用者名稱前可以有空格也可以沒有空格,但是密碼前必須沒有空格,否則讓你重新輸入密碼.如果剛安裝好mysql,超級使用者root是沒有密...
MySQL必備指令集
列中僅選取唯一不同的值 distinct select distinct tool sub type from table where tool type 1 三表聯查 and select from table 1 t1 table 2 t2,table 3 t3 where t1.store i...
MYSQL常用指令集
查詢 正在使用的引擎 show engines 查詢死鎖的表 show open tables where in use 0 查詢所有正在進行的執行緒 show full processlist 查詢 正在執行的事務 select from information schema.innodb trx...