Char
Converts a numerical value between 0 and 255 to the character value
corresponding to the ASCII code.
Syntax
Char(numExpr)
Where:
numExpr
Any expression that evaluates to a numerical value between 0 and 255.
Practical Usage in Answers Using the Paint
Business Area
SELECT Char(40) saw_0, Char(45) saw_1, Char(55) saw_2, Char(62) saw_3,
Char(64) saw_4, Char(65) saw_5, Char(66) saw_6, Char(67) saw_7, Markets.Region
saw_8 FROM Paint WHERE Markets.Region = 'CENTRAL REGION'
Comments
Post a Comment