1 Star 4 Fork 2

糖哥哥/汉语拼音库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
queryPinyinHan.sql 1.80 KB
一键复制 编辑 原始数据 按行查看 历史
糖哥哥 提交于 2022-03-07 11:00 . 修复一些错误
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;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/welldones/hanpinyin.git
[email protected]:welldones/hanpinyin.git
welldones
hanpinyin
汉语拼音库
master

搜索帮助