Ask Question
27 March, 12:32

Code example 12-1 Select VendorName, InvoiceNumber, InvoiceDate, InvoiceTotal From Vendors Inner Join Invoices On Vendors. VendorID = Invoices. VendorID Where InvoiceTotal > = 500 Order By VendorName Desc (Refer to code example 12-1.) How many columns will the result set have?

+4
Answers (1)
  1. 27 March, 15:05
    0
    4

    Explanation:

    From the given query, four columns are been called when we study the query closely.

    Select VendorName, InvoiceNumber, InvoiceDate, InvoiceTotal From Vendors Inner Join Invoices On Vendors. VendorID = Invoices. VendorID Where InvoiceTotal > = 500 Order By VendorName Desc

    The column are VendorName, InvoiceNumber, InvoiceDate, InvoiceTotal.

    And the table name is Vendors.

    With inner join on another table called Invoices

    On Vendors. VendorID = Invoices. VendorID

    Where InvoiceTotal > = 500

    Order By VendorName in descending order

    So, from the above the resultset will have four (4) columns.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Code example 12-1 Select VendorName, InvoiceNumber, InvoiceDate, InvoiceTotal From Vendors Inner Join Invoices On Vendors. VendorID = ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers