我试图一次从3个表中检索数据,但我不知道如何在mysql中执行此操作(说实话,我对数据库的东西非常糟糕,所以这让我很困惑)。
1st logins table that has 3 columns id, email, password
2nd users table that has 4 columns id, name, surname, location_id
3rd locations has 3 columns location_id, country, city
我想要做的是使用用户ID编写查询以从登录表中获取电子邮件,然后从users表中获取姓名和姓氏。然后我想使用我从users表中获得的location_id来找出他或她来自哪个城市。
我希望这对你有意义并感谢你的时间。
答案 0 :(得分:-1)
也许这可能会有所帮助
select a.email, B.name, B.surname, C.city
from logings A join users B on (A.id=B.id) join locations C on