Question: Code example 1 9 - 2 SELECT v . VendorName, i . InvoiceNumber, i . InvoiceDate, i . InvoiceTotal FROM Vendors AS v INNER JOIN

Code example 19-2
SELECT v.VendorName, i.InvoiceNumber, i.InvoiceDate, i.InvoiceTotal
FROM Vendors AS v
INNER JOIN Invoices AS i
ON v.VendorID = i.VendorID
WHERE i.InvoiceTotal >=500
ORDER BY v.VendorName DESC
(Refer to code example 19-2.) 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
Code example 1 9 - 2 SELECT v . VendorName, i .

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!