摘要:
create function fun_getCN(@str nvarchar(4000)) returns nvarchar(4000) as begin declare @word nchar(1),@CN nvarchar(4000) set @CN='' while len(@str)>0 begin set @word=left(@str,1) if unicode(@word) ... 阅读全文
posted @ 2010-10-26 23:52
yuqicook
阅读(403)
评论(0)
推荐(0)