关于查找字符串
select position('hello' in 'test_sql') output:0 select position('test' in 'test_sql') output:1
故可用position(str_1 in str_2) != 0
判断str_1是否是str_2的子串。
字符串与数字的相互转换
字符串->数字
to_number(block_id,'999999')
和cast(block_id as numeric)
,但前一句会限定的数字大小为10的5次方,即过大的数值会出问题,而后一句不会。数字->字符串
cast(block_id as varchar)
将数值型转为字符串型。