#282

Joining Two Tables

Combine the Person and Address tables. For every person return their first name, last name, city and state. If there is no address, return NULL.

Expected output sample

This is what a correct answer looks like — its row count is its own, it doesn't have to match the schema tables.

citystatelastnamefirstname
New YorkNYSmithAlice
Los AngelesCABrownCarol
NULLNULLJonesBob

Your query result will appear here