ASCII (Transact-SQL)
Retorna o valor do código ASCII do caractere mais à esquerda de uma expressão de caractere.
Sintaxe
ASCII ( character_expression )
Tipos de retorno
int
Exemplos
O exemplo a seguir supõe um conjunto de caracteres ASCII e retorna o valor ASCII e o caractere CHAR para cada caractere na cadeia de caracteres Du monde entier.
SET TEXTSIZE 0
SET NOCOUNT ON
-- Create the variables for the current character string position
-- and for the character string.
DECLARE @position int, @string char(15)
-- Initialize the variables.
SET @position = 1
SET @string = 'Du monde entier'
WHILE @position <= DATALENGTH(@string)
BEGIN
SELECT ASCII(SUBSTRING(@string, @position, 1)),
CHAR(ASCII(SUBSTRING(@string, @position, 1)))
SET @position = @position + 1
END
SET NOCOUNT OFF
GO
Aqui está o conjunto de resultados.
----------- -
68 D
----------- -
117 u
----------- -
32
----------- -
109 m
----------- -
111 o
----------- -
110 n
----------- -
100 d
----------- -
101 e
----------- -
32
----------- -
101 e
----------- -
110 n
----------- -
116 t
----------- -
105 i
----------- -
101 e
----------- -
114 r