我有四张桌子
- 汽车(
car_ registration_no, class, type_code
) - 出租历史(
rent_date, car_registration_no, rent_location_code, return_location_code
) - 输入(
type_code, make, model
) - 位置(
location_code, branch_name
)
我需要一个查询来显示按位置租用的最受欢迎的汽车。我需要查询以显示上个月每个地点的总租金?
到目前为止,我的代码如下,但我无法完成:
SELECT car.class, car.type_code , type.make, type.model
FROM car , type, rental_history
where rental_history.car_registration_no = car.car_registration_no
and car.type_code = type.type_code