TSql 中控制字符
CHAR 可用于将控制字符插入字符串中。下表显示了一些常用的控制字符。
控制字符 值
制表符 char(9)
换行符 char(10)
回车符 char(13)
实例如下:
print '---------------------'
print char(9)+'hello'
print '---------------------'
print char(10)+'hello'
print '---------------------'
print char(13)+'hello'
print '---------------------'
print char(9)+'hello'
print '---------------------'
print char(10)+'hello'
print '---------------------'
print char(13)+'hello'
print '---------------------'