PixelPro的博客一、创建拼音对照表CREATE TABLE IF NOT EXISTS `t_base_pinyin` (`pin_yin_` varchar(255) CHARACTER SET gbk NOT NULL,`code_` int(11) NOT NULL,PRIMARY KEY (`code_`)) ENGINE=InnoDB DEFAULT CHARSET=latin1;...
赵猪倌的博客一、创建拼音对照表-- 创建汉字拼音对照临时表create table if not exists `t_base_pinyin` (`pin_yin_` varchar(255) character set gbk not null,`code_` int(11) not null,primary key (`code_`)) engine=innodb ...