mysql查詢表字元集編碼的兩種方法:1、使用「show table status」語句檢視指定資料庫中指定表的字元集編碼,語法「show table status from 庫名 like 表名;」。2、使用「show columns」語句配合full關鍵字檢視當前資料庫中指定表所有列的字元集編碼,語法「show full columns from 表名;」。
本教學操作環境:windows7系統、mysql8版本、Dell G3電腦。
mysql查詢表字元集編碼的兩種方法
1、使用show table status
語句檢視指定表的字元集編碼
SHOW TABLE STATUS
命令可以獲取指定資料庫中每個資料表的資訊,包括字元集編碼。
show table status from 資料庫名;
但只想獲取指定表的資訊,就可利用like進行限制:
show table status from 庫名 like 表名;
範例:檢視class_7資料庫中test_info表的字元集編碼
show table status from class_7 like 'test_info';
mysql> show table status from class_7 like 'test_info'; +-----------+--------+---------+------------+------+----------------+-------------------------+-------------+------------+-----------------+----------+- | Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_leate_time | Update_time | Check_time | Collation | Checksum | +-----------+--------+---------+------------+------+----------------+-------------------------+-------------+------------+-----------------+----------+- | test_info | InnoDB | 10 | Compact | 10 | 1638 | 17-12-05 19:01:55 | NULL | NULL | utf8_general_ci | NULL | +-----------+--------+---------+------------+------+----------------+-------------------------+-------------+------------+-----------------+----------+- 1 row in set (0.00 sec)
2、使用show columns
語句配合full關鍵字檢視當前資料庫中指定表中所有列的字元集編碼
在mysql中,SHOW COLUMNS
命令可以顯示錶的列資訊,而要獲取有關列的更多資訊,請將FULL
關鍵字新增到SHOW COLUMNS
命令中:
show full columns from 表名;
該語句可以輸出指定表中所有列的字元集編碼
範例:檢視test_info表中所有列的字元集編碼
show full columns from test_info;
mysql> show full columns from test_info; +-------+----------+-----------------+------+-----+---------+-------+---------------------------------+---------+ | Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment | +-------+----------+-----------------+------+-----+---------+-------+---------------------------------+---------+ | id | int(3) | NULL | NO | PRI | NULL | | select,insert,update,references | | | name | char(12) | utf8_general_ci | YES | | NULL | | select,insert,update,references | | | dorm | char(10) | utf8_general_ci | YES | | NULL | | select,insert,update,references | | | addr | char(12) | utf8_general_ci | YES | | 未知 | | select,insert,update,references | | | score | int(3) | NULL | YES | | NULL | | select,insert,update,references | | +-------+----------+-----------------+------+-----+---------+-------+---------------------------------+---------+ 5 rows in set (0.00 sec)
【相關推薦:】
以上就是mysql怎麼查詢表的字元集編碼的詳細內容,更多請關注TW511.COM其它相關文章!