0
我有3個表格(contents,tags,contents_tags)。Mysql,group by和子查詢在一行
它可在http://sqlfiddle.com/#!2/8b0338
我需要一個查詢返回這樣的事:
+------------+--------+----------------+
| contents.id| title | tag |
+------------+--------+----------------+
| 1 | News 1 | News, Articles |
| 2 | News 2 | News |
+------------+--------+----------------+
'JOIN' +'GROUP_CONCAT()' –