show variables like 'char%';
show variables like 'collation%';
2. 修改編碼:
set variable_name=value /* set character_set_connection=utf8; */
3:顯示建立資料庫資訊:
show create database database_name
4 . 修改資料庫字符集編碼:
alter database database_name character set charset_name collate collation_name
5. 建立資料庫同時指定字符集編碼:
create database database_name character set charset_name collate collation_name
6. 顯示建立表資訊:
show create table table_name
7.修改表字符集資訊:
alter table table_name convert to character set charset_name collate collation_name
8.建立表同時指定字符集編碼:
create table table_name (column_list) character set charset_name collate collation_name
9.顯示**列資訊:
show full columns in table_name
10.修改**中列的字符集編碼資訊:
alter table table_name modify col_name data_type character set charset_name collate collation_name
mysql 字符集設定
1.檢視mysql能夠支援的多種字符集 show character set 檢視mysql能夠支援的字符集的校對規則 show collation show collation like utf8 2.檢視當前字符集及校對 show variables like character set sho...
MySQL字符集設定
一 mysql字符集設定 1 系統變數 character set server 預設的內部操作字符集 character set client 客戶端 資料使用的字符集 character set connection 連線層字符集 character set results 查詢結果字符集 ch...
mysql 字符集設定
一 mysql字符集設定 1 系統變數 character set server 預設的內部操作字符集 character set client 客戶端 資料使用的字符集 character set connection 連線層字符集 character set results 查詢結果字符集 ch...