我想从3个不同的表中选择user_name,vehicle_name和maintain_cost,其中user_id,vehicle_id和maintain_cost_id等于3,所以我使用了哪个查询,我尝试
(select user_name,vehicle_name,maintain_cost
from user,vehicle,maintain_cost
where user_id='3')
但不知道如何放置vehicle_id ='3'和maintain_cost_id ='3'
最佳答案
使用左联接,可以在此处找到示例:http://www.w3schools.com/sql/sql_join_left.asp