Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This statement...

GROUP_CONCAT(
  DISTINCT  c_style.clrdesc
  ORDER BY  c_style.clrdesc DESC
  SEPARATOR '|'
) AS Attributes

takes this table...

STYLE CLRDESC
1058  BLACK
1058  BLUE
1058  RED

and returns...

STYLE ATTRIBUTES
1058  BLACK|BLUE|RED

I'd like to take this one step further and prepend a fixed string before the color values in the ATTRIBUTES column...

STYLE ATTRIBUTES
1058  string of text|BLACK|BLUE|RED

I've tried nesting the statement with CONCAT but I'm receiving an error.

share|improve this question
1  
Please post what you tried. – Tom Jan 21 at 17:29

1 Answer

CONCAT_WS('|', 'string of text', GROUP_CONCAT(
  DISTINCT  c_style.clrdesc
  ORDER BY  c_style.clrdesc DESC
  SEPARATOR '|'
)) AS Attributes

See it on sqlfiddle.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.