在SQL中实现获取汉字首拼方法
摘要: Create function fun_getPY ( @str nvarchar(4000) ) returns nvarchar(4000) as begin declare @word nchar(1),@PY nvarchar(4000) set @PY='' while len(@str)>0 begin set @word=left(@str,1) --如果非汉字字符,...
阅读全文
posted @
2008-03-14 16:06 Bob&xiaobo.liu 阅读(232) |
评论 (0) 编辑