SELECT VendorName, InvoiceNumber
FROM Invoices i
LEFT JOIN Vendors v
ON i. VendordID = v. VendorID;
A. keeps unmatched rows in the Invoices table
B. keeps unmatched rows in the Vendors table
C. keeps unmatched rows in both the Invoices and Vendors tables
D. only keeps matched rows