阅读量:1
在Hive中使用substr
函数可以截取字符串的子串。substr
函数的语法为:
substr(string str, int start, int length)
其中,str
是要截取的源字符串,start
是截取的起始位置(从1开始计数),length
是要截取的子串的长度。
例如,要截取字符串"Hello World"中的"Hello",可以使用以下查询:
SELECT substr('Hello World', 1, 5);
这将返回"Hello"。