3

所以我需要从一个表中选择不同的值,但是在同一个查询中连接另一个表中的所有相关值。

基本上我遵循 Toxi TagSystem Schema http://forge.mysql.com/wiki/TagSchema#Toxi

三表之间的多对多映射。

而且我需要在每一行上显示所有插入的值(文档),但是我希望其中一列具有文件已用逗号分隔的所有标签。

现在我有

SELECT 
    docs.id AS id, 
    docs.orig_file AS orig_file, 
    docs.date_sent AS date_sent, 
    tags.tag_name AS alltags
FROM documat AS docs
LEFT JOIN documat_file2tag AS f2t ON f2t.doc_id = docs.id
LEFT JOIN documat_tags AS tags ON tags.id = f2t.tag_id

但是,如果特定的 docs.id 不止一个标签,这就是重复行。我希望在每一行上得到的最终结果是:

| ID | orig_file | date_sent | alltags |

使用所需的结果示例:

| X | example_value.pdf | 2012-03-23 10:14:05 | tag_ex_1, tag_ex_2, etc |
4

1 回答 1

7

组连接:

SELECT 
    docs.id AS id, 
    docs.orig_file AS orig_file, 
    docs.date_sent AS date_sent, 
    GROUP_CONCAT(distinct tags.tag_name) AS alltags
FROM documat AS docs
LEFT JOIN documat_file2tag AS f2t ON f2t.doc_id = docs.id
LEFT JOIN documat_tags AS tags ON tags.id = f2t.tag_id
GROUP BY docs.id
于 2012-04-18T08:40:56.047 回答