Apache Presto - substring(string,start,length)

查询

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

这里,起始索引10、长度5的子串是"point"。

apache_presto_sql_functions.html