Answer:
SELECT [FirstName], LastName,
Line1, City, [State], ZipCode
FROM Customers JOIN Addresses ON
Customers.CustomerID = Addresses.CustomerID
AND
Customers.ShippingAddressID = Addresses.AddressID
Step-by-step explanation:
The SELECT statement allows us to list the names of columns we wish to choose or select from the table. The customer and address tables are joined based on the common column which harbors unique ID and Address for each customer, CustomerID present in both tables (customers and addresses) and Shipping Address present as ShippingAddressID in Customers and AddressID in Addresses.