CHAR
Description
Returns a single-byte character with the integer sent as a parameter on the ASCII table (CHAR in Transact-SQL).
Sample Source Pattern
Syntax
CHAR( expression )
Examples
Input:
SELECT CHAR(170) AS SMALLEST_A
Output:
SMALLEST_A|
-----------+
ª|
Last updated