码迷,mamicode.com
首页 > 其他好文 > 详细

字符和ASCII 编码的转换

时间:2016-08-09 11:56:02      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

Char(int)  将ASCII code转换为一个字符, Converts an int ASCII code to a character.

ASCII(char) 将一个字符转换为ASCII code,Returns the ASCII code value of the leftmost character of a character expression.

--convert int to char
declare @char_int binary(1)
set @char_int=ASCII(a)
select @char_int

--convert int to char
declare @int_char binary(10)
set @int_char=97
select char(@int_char)


 

参考doc:

CHAR (Transact-SQL)

ASCII (Transact-SQL)

字符和ASCII 编码的转换

标签:

原文地址:http://www.cnblogs.com/ljhdo/p/5752543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!