Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save aramkoukia/60e06f1c68582857f474d3cb71fc90b2 to your computer and use it in GitHub Desktop.

Select an option

Save aramkoukia/60e06f1c68582857f474d3cb71fc90b2 to your computer and use it in GitHub Desktop.
TSQL COALESCE comma separate rows
DECLARE @List VARCHAR(8000)
SELECT @List = COALESCE(@List + ',', '') + CAST(Color AS VARCHAR)
FROM NameColorTable
SELECT @List
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment