Problem
Write a SELECT statement that returns two columns: VendorName and LargestInv (LargestInv is the correlation name of the subquery) Subquery portion: SELECT statement that returns the largest InvoiceTotal from the Invoices table (you will need to perform the JOIN within the subquery in one of the clauses). Sort the results by LargestInv from largest to smallest.