我无法同时使用 JOINS 和 group-by:我搜索了这个...但我没有找到解决方案..问题如下:
我有两个表,第一个是main_table
字段eid
,,,name
status
第二个表是字段fid
, eid
, last_date
,remarks
和next_date
第二个表用于存储客户的后续详细信息(存储在 main_table 中的客户详细信息),我想获取每个客户的最后一个后续记录,其中包含选定的日期期间(从日期到 to_date),并按 next_date 降序排序。
我使用了以下查询但没有工作
SELECT *
FROM main_table as MT
JOIN followups as MF on MT.eid=MF.eid
WHERE MT.status='open' AND MF.NDate<='2012-12-07'
GROUP BY MF.eid
ORDER BY MF.next_date DESC
提前谢谢...伙计们