如何检查字符是否是 sql-server 中的有效字母?
问问题
1627 次
2 回答
0
取决于您定义为字母字符的内容。您可以检查 ascii 代码并通过设置有效范围自行决定它是否有效:
select ASCII('Z') between 97 and 122 and ASCII('Z') between 65 and 90
于 2012-06-07T07:23:31.777 回答
0
create function isAlpha( @aChar varchar)
returns int
as
begin
declare @anAsc int
set @anAsc = ascii(@aChar)
-- 65 = A
-- 90 = Z
return
case
when @anAsc < 65 then 0
when @anAsc > 90 then 0
else 1
end
end
于 2012-06-07T07:30:43.387 回答