SUBSTRING
SUBSTRING (str, start_position [, string_length])
返回字符串 str 从 start_position 开始的子字符串。SUBSTRING 可以返回 start_position 起的剩余部分字符或者作为可选,返回由 string_length 参数设置的字符数。
如果 start_position 小于 0,则被视为 1。
如果 string_length 小于 1,则返回空字符串。
SELECT SUBSTRING ('1234567890',4,2) "substring" FROM DUMMY;
1
substring
45
------------------------------
原文链接:
SAP HANA SQL系列五:字符串函数_hana数据库语言如果为空是0-CSDN博客