How to select data from two tables using a single query

前端 未结 5 866
北海茫月
北海茫月 2021-01-29 02:02

I\'ve been trying to get my head around how to use a single query to select data from two of my tables. If anybody can suggest a better way than a single query, I\'m all ears! P

5条回答
  •  抹茶落季
    2021-01-29 02:44

    Simple join, between a common id. Inner join will ensure there are records in the networking table, otherwise it won't show that member. you can replace it with a LEFT JOIN if you want all the member rows regardless if they have anything joined in the network table

     SELECT * FROM member m 
          INNER JOIN networking n 
     ON (m.networkingID = n.id) 
     WHERE m.id = 2;
    

提交回复
热议问题