这是我的表,我使用 sql developer oracle
Carowner(车主id, carowner-name,)
汽车(Carid、汽车名称、车主 ID*)
驱动程序(driver_licenceno,驱动程序名称)
比赛(比赛编号、比赛名称、奖金、比赛日期)
RaceEntry(Race no*, Car id*, Driver_licenceno*, Finishing_position)
我试图列出做下面的查询
从今年年初开始,哪些车手在比赛中排名第二。输出中包含比赛名称、车手姓名和赛车名称
我尝试过
select r.racename, d.driver-name, c.carowner-name
from race r, driver d, car c, raceentry re
where re.finishing_position = 2 and r.race-date is ...