首页 >

mysql拼音转中文函数 |linux如何停止mysql服务

mysql金库模式,mysql调优语句,mysql 按类型分组统计,mysql db_row_id,phpstudy的mysql升级,linux如何停止mysql服务mysql拼音转中文函数 |linux如何停止mysql服务
CREATE FUNCTION `PinyinToChn`(`str` char(255)) RETURNS char(255)
characterset utf8
begin
declare len INT default 0;
declare i INT default 0;
declare py char(255) default '';
declare chn char(255) default '';
set len = length(str);
while i= 65 then
set py = concat(py, substring(str, i, 1));
else
set chn = concat(chn, CharToChn(py));
set py = '';
set chn = concat(chn, substring(str, i, 1));
end if;
if i = len and py != '' then
set chn = concat(chn, CharToChn(py));
end if;
end while;
return chn;
end

以上是MySQL拼音转中文函数的代码,其中用到了CharToChn函数,可以根据需要自行实现。使用该函数时,只需将拼音字符串传入函数中即可。

以上是MySQL拼音转中文函数的介绍,希望对大家有所帮助。


  • 暂无相关文章