Skip to content
Advertisement

Split multiple strings in SQL

I am trying to split multiple columns of strings at the same time.

My original data looks like:

Table1

UserID Type ProductID
1 A, B 001, 003

and I want to end up with

UserID Type ProductID
1 A 001
1 B 003

When I use

I end up with this table that I do not want…

UserID Type ProductID
1 A 001
1 B 003
1 A 003
1 B 001

How do I split multiple columns of strings simultaneously?

Advertisement

Answer

In SQL Server 2016 and above, you can use OPENJSON to split strings with deterministic ordering. Given this sample data:

You can use this query:

Which produces this output:

UserID Type Product
1 A 001
1 B 003
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement