Snowflake Vs MS-SQL - Part 100 - Split String into Different Columns
Split String into Different Columns
Suppose your application stores the name of an employee as a full name, and while retrieving, you want to separate it out as first name, middle name & last name.
MS-SQL Server
In Snowflake, we can make use of SPLIT_PART as follows:
For more details, refer to the SPLIT_PART section.

Comments
Post a Comment