HPL/SQL is included to Apache Hive since version 2.0
HPL/SQL is included to Apache Hive since version 2.0
SUBSTR function returns a substring from string.
Syntax:
SUBSTR(string, start_pos [, substring_len])
Parameters:
Parameter | Type | Value | Description |
string | String | Variable or expression | Original string |
start_pos | Integer | Variable or expression | Start position of substring (starts from 1) |
substring_len | Integer | Variable or expression | Length of substring |
Notes:
Return Type:
String.
Example:
SUBSTR('Remark', 3);
Result: 'mark'
Example:
SUBSTR('Remark', 3, 3);
Result: 'mar'
Compatibility: Oracle, IBM DB2 and MySQL.
See also:
Version: HPL/SQL 0.1