leetcode-database-175. Combine two tables-use left join to solve.

      Problem-solving directory

175. Combine two tables

      I think this question is really simple ...

      175 questions leetcode link

select 
    p.FirstName,
    p.lastName,
    a.City,
    a.State 
from Person p
left join Address a on p.PersonId = a.PersonId 

      
      

Published 48 original articles · Like 36 · Visits 130,000+

Guess you like

Origin blog.csdn.net/weixin_42845682/article/details/105156607