您好,登錄后才能下訂單哦!
這篇文章主要介紹了mysql如何查詢表的字符集編碼的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇mysql如何查詢表的字符集編碼文章都會有所收獲,下面我們一起來看看吧。
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如何查詢表的字符集編碼”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“mysql如何查詢表的字符集編碼”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。