show variables like
'%char%';
建立測試資料表
DROP TABLE IF EXISTS
`unicode_test`;
CREATE TABLE `unicode_test` (
`t1` int(11) NOT NULL AUTO_INCREMENT,
`t2` varchar(64) NOT NULL,
PRIMARY KEY (`t1`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
;
插入一筆亂碼資料看看
insert into unicode_test (t2) values ('我是奇怪文嬗');
果然顯示亂碼
select * from unicode_test;