我正在尝试学习MySQL,所以我创建了一个小博客系统。
我在MySQL中有3个表:
posts
:
id | title
----------------
1 | Post Title 1
2 | Post Title 2
categories
:
id | title | parent
--------------------------------
10 | category10 | 0
11 | category11 | 0
12 | category12 | 10
post_category_relations
:
id | post_id | category_id
----------------------------------
1 | 1 | 10
2 | 2 | 12
3 | 3 | 11
每个帖子可以有多个类别,它们的关系存储在post_category_relations中:
因此,当我访问index.php?category = 10时,我希望每篇帖子都包含与category10
相关的内容,包括其子文件夹category12
中的帖子。
我在PHP中未完成的代码段
$folder_id = $_GET["category"]; // Get Category ID from the URL
$sql = "SELECT * FROM posts
JOIN categories
JOIN post_category_relations
// And I don't really know what should I do here
// because I need the child categories first, then the relations
// then I can get the post too from the post_id of the relations
";
mysql_query($sql);
我知道这将需要高级MySQL技能,但任何帮助表示赞赏!我已经在PHP中创建了这个,但是我需要使用4个循环,这不是最好的方法,当它在MySQL中可能时,我只是不知道如何:)
答案 0 :(得分:4)
Phillip Keller可能会发现这些文章很有趣:
它们涵盖了标签,但您的查询(即category1 and category2
与category1 or category2
以及您尝试撰写的查询几乎相同。
另见关于索引分层数据的讨论:Managing Hierarchical Data in MySQL。
与SO上的大量线程一样,与嵌套集,标签,类别等相关。
答案 1 :(得分:0)
我无法测试我的查询,但我相信
select * from posts,post_category_relations where post.id=post_category_relations.post_id and
post_category_relations.category_id in (select id from categories where id=? or parent=?)
正是您要找的。 p>
答案 2 :(得分:0)
这是一个SQL:
# Take post from castegory $cat_id
(SELECT P.*
FROM
posts P, post_category_relations PR
WHERE
PR.category_id = {$cat_id} AND PR.post_id = P.id
)
UNION
# Take all post from $cat_id child categories
(SELECT P.*
FROM
posts P, post_category_relations PR, categories C
WHERE
PR.category_id = C.parent AND PR.post_id = P.id
AND C.id = {$cat_id}
)