MySQL + PHP: fetching data using foreign keys

后端 未结 4 1806
一整个雨季
一整个雨季 2021-01-14 08:21

I have 2 tables (Users, Wall). The UserID in the Wall table is a foreign key. How would I go about fetching the users details using this? (I want to fetch the users Forename

4条回答
  •  甜味超标
    2021-01-14 08:58

    select w.MessageID, w.Message, u.UserID, u.Forename, u.Surname
    from Wall w
    inner join Users u on w.UserID = u.UserID
    

提交回复
热议问题