代码拉取完成,页面将自动刷新
CREATE DEFINER=`root`@`localhost` PROCEDURE `queryPinyinHan`( IN `pinyin_` VARCHAR ( 20 ) charset 'utf32' )
DETERMINISTIC
COMMENT '通过全拼查询汉字'
BEGIN
-- # 使用方法
-- # call queryPinyinHan("chuāng");
-- # 去掉空格
SET @str_="";
set @j=1;
-- # 去掉空格
SELECT REPLACE(pinyin_,' ','') into @pin_ ;
-- # 计算有多少个拼音
SELECT LENGTH(@pin_) / 4 into @count;
WHILE @j <= @count DO
SELECT SUBSTRING(@pin_,@j,1) into @p_;
SELECT CONV(HEX(CONVERT(@p_ using 'utf32')) ,16,10) into @s_;
SELECT CONCAT(CONVERT(@str_ USING 'utf32'),@s_) into @str_;
SET @j=@j+1;
END WHILE;
SELECT hex(`dec_`) as utf32,CONVERT(UNHEX(CONV(`dec_`,10,16)) using 'utf32') as `han`,GROUP_CONCAT(CONVERT(UNHEX(CONV(`pin_`,10,16)) using 'utf32') ORDER BY `id` asc SEPARATOR '') as `py`,GROUP_CONCAT(`pin_` ORDER BY `id` asc SEPARATOR '') as `deci` from p_pinyin as p GROUP BY `dec_`,`group_` HAVING `deci`=@str_;
END;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。