多层MySQL查询?

时间:2010-02-21 20:33:29

标签: php mysql codeigniter

我有两个表(条目和标签),带有多对多链接表。现在,我正在进行查询以检索符合我的条件的所有条目,并查询每个条目以检索标记。

有没有办法说,在第一个查询中将标签作为数组通过新列返回?

2 个答案:

答案 0 :(得分:1)

此查询:

SELECT     e.id                               entry_id
,          GROUP_CONCAT(t.txt ORDER BY t.txt) tags
FROM       entry e
LEFT JOIN  entry_tag et
ON         e.id = et.entry_id
LEFT JOIN  tag t
ON         et.tag_id = t.id
GROUP BY   e.id

将标记作为逗号分隔列表返回。您可以阅读GROUP_CONCAT以获取更多选项:http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html#function_group-concat

在您的应用中,您应该能够轻松地将其扩展为阵列。例如,在php中,您可以使用explodehttp://php.net/manual/en/function.explode.php

如果您需要tagentry_tag表中的更多属性,您可以添加更多GROUP_CONCAT列,或者考虑一些数据的序列化格式(如JSON)和在其上使用GROUP_CONCAT,或者您可以简单地为每个条目返回多行并在应用程序中处理结果以将标记与条目一起保存:

$sql = '
    SELECT     e.id                  entry_id
    ,          t.id                  tag_id
    ,          t.txt                 tag_text
    ,          t.published           tag_published
    FROM       entry e
    LEFT JOIN  entry_tag et
    ON         e.id = et.entry_id
    LEFT JOIN  tag t
    ON         et.tag_id = t.id
    ORDER BY   e.id
';        
$result = mysql_query($ql);
$entry_id = NULL;
$entry_rows = NULL;
while ($row = mysql_fetch_assoc($result)) {
    if ($entry_id != $row['entry_id']) {
        if (isset($entry_id)) {           //ok, found new entry
            process_entry($entry_rows);   //process the rows collected so far
        }
        $entry_id = $row['entry_id'];
        $entry_rows = array();
    }
    $entry_rows[] = $row;                 //store row for his entry for later processing
}
if (isset($entry_id)){                    //process the batch of rows for the last entry
    process_entry($entry_rows);           
}

答案 1 :(得分:0)

您可以使用GROUP BYGROUP_CONCAT函数将所有标记一次性作为连接字符串。 http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html