我的 SQL 查询有问题,返回的结果集不是我所期望的。
我有这三个表,我试图关联。
events_detail
__________________
| ID | start_date |
| 1 | 2012-08-09 |
| 2 | 2013-02-13 |
| 3 | 2012-12-12 |
| 4 | 2013-01-21 |
| 5 | 2012-12-25 |
-------------------
其中 ID 是主键
events_category_relationship
__________________________
| ID | event_id | cat_id |
| 1 | 1 | 1 |
| 2 | 2 | 4 |
| 3 | 3 | 2 |
| 4 | 4 | 2 |
| 5 | 5 | 3 |
--------------------------
其中 ID 是主键
events_category_detail
__________________________________
| ID | name | description |
| 1 | Europe | Kings and castles! |
| 2 | USA | Freedoms |
| 3 | China | Made in China |
| 4 | UK | Big Brother |
------------------------------------
其中 ID 是主键
我需要做的是从每个类别中仅获取 1 个事件,并按最早出现的日期排序。所以我应该期待我的结果如下
结果集
________________________________________________________________
| e_id | start_date | c_id | category_name | category_desc |
| 1 | 2012-08-09 | 1 | Europe | Kings and castles! |
| 3 | 2012-12-12 | 2 | USA | Freedoms |
| 5 | 2012-12-25 | 3 | China | Made in China |
| 2 | 2013-02-13 | 4 | UK | Big Brother |
-----------------------------------------------------------------
我尝试的 SQL 查询如下所示
SELECT e.id, e.start_date, c.category_name, c.category_desc
FROM events_detail e
JOIN events_category_relationship r ON r.event_id = e.id
JOIN events_category_detail c ON c.id = r.cat_id
ORDER BY date(e.start_date)
这只是连接 3 个表并按日期顺序返回结果。我坚持的是使每个类别中只有一个像上面所需的结果集一样显示。我曾尝试使用 DISTINCT c.category_name 和 GROUP BY c.category_name,但它们都不起作用。
任何帮助或建议将不胜感激。