To avoid a ridiculously long SQL Select statement, how do I select all record from two tables?
So in the example below, I've two tables [Customers] & [Invoice] which are joined by CustomerID
SELECT Customers.BillingName, Invoice.InvoiceNumber, Customers.BillingAddress1, Invoice.OrderDateTime...