I have two tables in different places
the end result has to be
VendorName InvoiceNumber InvoiceTotal
VendorName is in a table called Vendors
InvoiceNumber and InvoiceTotal are in a table called Invoices
it needs to show all the vendors in the result even if the vendors dont have any invoices, display the largest invoice totals first DESC and sort the Vendor Names in Alphabetical order.
I tried to Join the Invoices into my
SELECT VendorName FROM Vendors
but I cannot figure out the syntax :/