The Pragmatic Programmer

Appian, Pega, Java, DevSecOps, Quality Engineering

Combine two tables

https://leetcode.com/problems/combine-two-tables/

SELECT
    firstname,
    lastname,
    city,
    state
FROM person LEFT JOIN address 
ON person.personid = address.personid;