Help Center/
GaussDB(DWS)/
Tool Guide/
DSC/
SQL Syntax Migration Reference/
Teradata Syntax Migration/
Functions and Operators/
String Functions
Updated on 2024-07-19 GMT+08:00
String Functions
CHAR Function
Input: CHAR
1
|
CHAR( expression1 ) |
Output:
1
|
LENGTH( expression1 ) |
CHARACTERS
Input: CHARACTERS
1
|
CHARACTERS( expression1 ) |
Output:
1
|
LENGTH( expression1 ) |
INDEX
Input: INDEX
1 2 3 |
SELECT INDEX(expr1/string, substring) FROM tab1 WHERE ... ; |
Output:
1 2 3 |
SELECT INSTR(expr1/string, substring) FROM tab1 WHERE ... ; |
STRREPLACE
Input: STRREPLACE
1 2 3 |
SELECT STRREPLACE(c2, '.', '') FROM tab1 WHERE ...; |
Output:
1 2 3 |
SELECT REPLACE(c2, '.', '') FROM tab1 WHERE ...; |
OREPLACE
Input: OREPLACE
1 2 3 |
SELECT OREPLACE (c2, '.', '') FROM tab1 WHERE ... ; |
Output:
1 2 3 |
SELECT REPLACE(c2, '.', '') FROM tab1 WHERE ... ; |
STRTOK
Input
1
|
LENGTH(STRTOK(STRTOK(JOB_NAME_TADD,'-',4),'_',2)) |
Output:
1
|
LENGTH(split_part(split_part(JOB_NAME_TADD,'-',4),'_',2)) |
Parent topic: Functions and Operators
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot