我有四個表SQL查詢來展示最流行的記錄
- 汽車(
car_ registration_no, class, type_code
) - Rental_history(
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
您是否嘗試過任何操作?這兩種類型的查詢都會被基本的Sql教程覆蓋。計算總和,分組並加入。 – 2012-04-21 10:45:17
我嘗試了這些到現在爲止,我無法完成它 SELECT car.class,car.type_code,type.make,type.model 從汽車,類型,rental_history 其中rental_history.car_registration_no = car.car_registration_no 和car.type_code = type.type_code – user1348163 2012-04-21 10:56:22
對我來說就像* 4 *表 – Bohemian 2012-04-21 10:59:52