I just would like to know the difference between this two type of sql query
1. SELECT [Last Name], InvoiceDate, Amount FROM tblCustomers INNER JOIN tblInvoices ON tblCustomers.CustomerID=tblInvoices.CustomerID ORDER BY InvoiceDate
2. SELECT [Last Name], InvoiceDate, Amount FROM tblCustomers, tblInvoices WHERE tblCustomers.CustomerID=tblInvoices.CustomerID ORDER BY InvoiceDate
I'd agree with Doug. Access seems to prefer method 1, but when I'm writing the select I would always use method 2 - my brain processes that better for some reason