Write a select statement that returns four columns


Write a SELECT statement that returns four columns: VendorName, InvoiceNumber, InvoiceDate, and InvoiceTotal. 
Return one row per vendor, representing the vendor's invoice with the earliest date. Sort by vendor name. using a derived table. This is what I have so far before I translate it into a derived table.

select VendorName, min(InvoiceDate), min(InvoiceNumber), InvoiceTotal
from Invoices join Vendors
on Invoices.VendorID = Vendors.VendorID
group by VendorName, InvoiceTotal 

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: Write a select statement that returns four columns
Reference No:- TGS083624

Expected delivery within 24 Hours