首頁 >資料庫 >mysql教程 >mysql怎麼查詢表的字元集編碼

mysql怎麼查詢表的字元集編碼

青灯夜游
青灯夜游原創
2022-06-28 19:37:5413735瀏覽

mysql查詢表格字元集編碼的兩種方法:1、使用“show table status”語句查看指定資料庫中指定表格的字元集編碼,語法“show table status from 庫名稱like 表格名稱;” 。 2.使用「show columns」語句配合full關鍵字查看目前資料庫中指定表格所有欄位的字元集編碼,語法「show full columns from 表名;」。

mysql怎麼查詢表的字元集編碼

本教學操作環境: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)

mysql怎麼查詢表的字元集編碼

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怎麼查詢表的字元集編碼

#【相關推薦:mysql影片教學

以上是mysql怎麼查詢表的字元集編碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn