Question: Code example 1 9 - 2 SELECT v . VendorName, i . InvoiceNumber, i . InvoiceDate, i . InvoiceTotal FROM Vendors AS v INNER JOIN
Code example
SELECT vVendorName, iInvoiceNumber, iInvoiceDate, iInvoiceTotal
FROM Vendors AS v
INNER JOIN Invoices AS i
ON vVendorID iVendorID
WHERE iInvoiceTotal
ORDER BY vVendorName DESC
Refer to code example Each column in the SELECT statement is qualified to indicate which table the column belongs to One way to make it easier to qualify columns is to use for table names.
keywords
aliases
wildcards
joins
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
