forked from docs/doc-exports
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Reviewed-by: Jiang, Beibei <beibei.jiang@t-systems.com> Co-authored-by: Lu, Huayi <luhuayi@huawei.com> Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
11 KiB
11 KiB
String Functions
CHAR Function
Input: CHAR
1 | CHAR( expression1 ) |
Output
1 | LENGTH( expression1 ) |
CHARACTERS Function
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 … ; |
Parent topic: Teradata Syntax Migration