CHR

简介:

语法

 
  
  1. VARCHAR CHR(INT ascii)

入参

  • ascii

    INT类型,是0到255之间的整数。如果不在此范围内,则返回NULL。

功能描述

将ASCII码转换为字符。

示例

  • 测试数据
int1(INT) int2(INT) int3(INT)
255 97 65
  • 测试案例
 
  
  1. SELECT CHR(int1) as var1, CHR(int2) as var2, CHR(int3) as var3
  2. FROM T1
  • 测试结果
var1(VARCHAR) var2(VARCHAR) var3(VARCHAR)
ÿ a A
本文转自实时计算—— CHR
相关文章
|
3月前
|
自然语言处理 关系型数据库 数据处理
在 Postgres 中使用 Chr
【8月更文挑战第11天】
57 1
ASCII码对应表chr(9)、chr(10)、chr(13)、chr(32)、chr(34)、chr(39)
chr(9) tab空格       chr(10) 换行      chr(13) 回车        Chr(13)&chr(10) 回车换行       chr(32) 空格符       chr(34) 双引号       chr(39) 单引号 chr(33) !        chr(...
1398 0
|
6月前
|
C++
大小写转换——islower/isupper或者tolwer/toupper函数的用法
大小写转换——islower/isupper或者tolwer/toupper函数的用法
58 0
|
Python
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
226 0
|
PHP
str_replace() 和 strpos()
str_replace() 和 strpos()
116 0
str_replace() 和 strpos()
内置函数值 -- chr() ord() -- 字符和ascii的转换
chr(i)   Return the string representing a character whose Unicode code point is the integer i. For example, chr(97) returns the string 'a', while chr(8364) returns the string '€'. This is the inverse of ord().   The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in base 16). Valu
164 0