当前位置: 代码迷 >> Sql Server >> 字符串转换为asc的函数
  详细解决方案

字符串转换为asc的函数

热度:7   发布时间:2016-04-25 01:12:22.0
求一个字符串转换为asc的函数
ASCII(),只会取字符串的第一个字付的ASCII值,有没有办法取整个字符串的ASCII值的和(SQL 2005 )

字符串只包含数字和字母,不会有中文字,但长度不定。



------解决方案--------------------
declare @str varchar(50)='abcde'
declare @asc int=0
while LEN(@str)>0
begin
set @asc=@asc+ascii(LEFT(@str,1))
set @str=SUBSTRING(@str,2,LEN(@str))
end
select @asc
------解决方案--------------------
SQL code
create function F_getasc(@str varchar(max))returns @tb table(A int)asbegindeclare @asc int=0while LEN(@str)>0beginset @asc=@asc+ascii(LEFT(@str,1))set @str=SUBSTRING(@str,2,LEN(@str))endinsert into @tb values(@asc)returnend--测试select * from f_getasc('abc')
  相关解决方案