Ask Question

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?

+5
Answers (1)
  1. 7 May, 07:29
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers