Skip to content
  • There are no suggestions because the search field is empty.

T-SQL Script: Split a delimited string

T-SQL Script: Split a delimited string

SELECT value
FROM STRING_SPLIT('A,B,C,D', ',');