Is it possible to use group by clause to concatenate strings?
Correct Answer: Yes, use SELECT identifier, GROUP_CONCAT(string SEPARATOR ' ') FROM table_name GROUP BY identifier.
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions