In
this article I am going to explain Sql server CHAR function.
In
previous article I have explained how to view code of store procedure in Sqlserver, how to implement button click event in Angularjs and how to get dateand time from current date in Sql server.
Description:
CHAR
function is opposite to ASCII function. It is used to get character from int ASCII
code.
Syntax
CHAR ( integer_code )
Example:
select CHAR(88)
Output:
0 Comments