|
通過show variables like 'character_set%%';查看編碼 修改mysql的編碼方式可以有以下幾個(gè): 1.通過配置文件修改my.ini(windows下)或/etc/my.cnf(linux下) 分別添加如下內(nèi)容
2.創(chuàng)建數(shù)據(jù)庫(kù)時(shí)設(shè)置編碼 create database test character set utf8; 3.創(chuàng)建表時(shí)設(shè)置編碼 create table test(id int primary key)DEFAULT charset=utf8; 4.修改數(shù)據(jù)庫(kù)編碼 alter database test character set utf8; 5.修改表默認(rèn)編碼 alter table test character set utf8; 6.修改字段編碼 alter table test modify col_name varchar(50) CHARACTER SET utf8; 以上所述是小編給大家介紹的MySQL字符編碼設(shè)置方法,希望對(duì)大家有所幫助! |
|
|