在我的 sql 语句中,我有一个 SQL 语句,我需要显示哪些客户返回日期已过期,即早于当前日期,到目前为止,我的查询如下所示:
SELECT customers.firstname, items.itemname, CustEquipment.ReturnDate, customers.phonenumber
FROM items join
CustEquipment
on items.ItemId = CustEquipment.ItemId join
customers
on CustEquipment.customerID=customers.customerID
这目前显示所有客户及其退货日期(以及我需要的其他信息),但我想显示已超过当前日期的退货日期,有人愿意指出我正确的方向吗?