I am migrating my database from MySQl to SQL Server. My app is built on top of drupal. I am not able to convert the following code to its SQL Server equivalent :
addExpression("GROUP_CONCAT(qa.answer SEPARATOR ',') ", 'lookingfordetails')
.
What is the SQL Server equivalent of GROUP_CONCAT()
and how do I implement it in addExpression()
?