我正在尝试学习 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 中可能不是最好的方法,我只是还不知道如何:)