Redshift Split Delimited Fields into Table Records and Examples
Amazon Redshift is relatively new to relational databases. It is based on PostgreSQL, but being a columnar distributed database, it does not support all functions that are available in PostgreSQl. One of such requirement is split a delimited string into rows. In this article, we will check how to split delimited fields into table records or rows using Redshift built in function. Not that, the method described in this article usually works when you have a fixed number of delimited fields in your input string. Say, you have 5 delimited…