MySQL 資料庫、表格和列字符集確定方法
本文介紹了確定 MySQL 資料庫不同層級字元集的方法,包括:
資料庫字元集
要擷取特定資料庫的預設字元集,請使用下列查詢:
<code class="language-sql">SELECT default_character_set_name FROM information_schema.SCHEMATA WHERE schema_name = "mydatabasename";</code>
表字符集
要確定表格的字元集,請執行下列查詢:
<code class="language-sql">SELECT CCSA.character_set_name FROM information_schema.`TABLES` T, information_schema.`COLLATION_CHARACTER_SET_APPLICABILITY` CCSA WHERE CCSA.collation_name = T.table_collation AND T.table_schema = "mydatabasename" AND T.table_name = "tablename";</code>
列字元集
最後,要檢索特定列的字元集,請使用以下查詢:
<code class="language-sql">SELECT character_set_name FROM information_schema.`COLUMNS` WHERE table_schema = "mydatabasename" AND table_name = "tablename" AND column_name = "columnname";</code>
以上是如何確定MySQL資料庫、表格、列層級的字元集?的詳細內容。更多資訊請關注PHP中文網其他相關文章!