table_cars : id、brand、type、license
table_distances : id_car,日期,距离
table_equipments : id, name, description
table_car_equipments : id_car, id_equipment
编写以下查询:
显示所有配备“灭火器”并且昨天一直在行驶的汽车
显示所有没有设备的品牌
显示上个月汽车“AB-2223-10”的总行驶距离
显示每天从巴黎开车的平均距离
我是 SQL 新手。
我试过这个:
select table_cars.id
from table_cars, table_equipments
where table_equipments.id = table_cars.id
and table_equipments.name LIKE 'fire extinguisher';
虽然我对表 table_cars(id) 和 table_distances(id_car) 感到困惑。不一样。我被困在这里。