我有两个表名为:customers和bill。客户和账单有一对多的关系。Customer 表包含客户 mobileNo、bikeNo 等的记录 Bill 表包含带有 bikeNo(外键)、billdate 等的客户账单记录。我对此进行了查询:
SELECT customer.mobileNo, bill.iDate AS Expr1
FROM (customer INNER JOIN
bill ON customer.bikeNo = bill.bikeNo)
ORDER BY bill.iDate;
现在,我如何通过此查询获得不同且最新的账单日期记录和 mobileNo?