Apache Presto - substring(字符串,开始,长度)



查询

presto:default> select substring('tutorialspoint',10,5) as substring; 

结果

 substring 
----------- 
   point

在此,从起始索引 10 开始,长度为 5 的子字符串是“点”。

apache_presto_sql_functions.htm
广告