我有 3 张桌子
用户
出席
支付
现在我喜欢得到
GroupID、用户名、MAX(PaymetDate)、MAX(AttendenceDate)
其中 MAX(PaymetDate) 小于 MAX(AttendenceDate)
这是我试过的
SELECT MAX(PaymetDate) AS Paied_Upto
FROM Payment
Group by GroupID
SELECT MAX(AttendenceDate) AS Last_ AttendenceDate
FROM Attendence FULL OUTER JOIN Users ON Attendence.Username = Users.Username
Group by Users.GroupID
但是如何让他们一起工作呢?