STRTOK_SPLIT_TO_TABLE
Translation specification for the STRTOK_SPLIT_TO_TABLE function to its Snowflake equivalent query
Description
Split a string into a table using the provided delimiters. For more information check STRTOK_SPLIT_TO_TABLE.
[TD_SYSFNLIB.] STRTOK_SPLIT_TO_TABLE ( inkey, instring, delimiters )
RETURNS ( outkey, tokennum, token )Sample Source Patterns
Setup data
Teradata
CREATE TABLE strtokTable
(
col1 INTEGER,
col2 VARCHAR(100)
);
INSERT INTO strtokTable VALUES(4, 'hello-world-split-me');
INSERT INTO strtokTable VALUES(1, 'string$split$by$dollars');Snowflake
STRTOK_SPLIT_TO_TABLE transformation
Teradata
Snowflake
Known Issues
No known issues.
Related EWIs
No related EWIs.
Last updated
