摘要:
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) --如果非汉字字符,返回原字符 se... 阅读全文
posted @ 2010-01-16 09:43
周骏
阅读(1547)
评论(0)
推荐(0)