Question: The tblBooks table in the Books database contains a numeric field named Quantity. Which of the following determines the total number of books in the
The tblBooks table in the Books database contains a numeric field named Quantity. Which of the following determines the total number of books in the BooksDataSet?
a. Dim intNumBooks As Integer =
Aggregate book In BooksDataSet.tblBooks
Into Count
b. Dim intNumBooks As Integer =
Aggregate book In BooksDataSet.tblBooks
Select book.Quantity
Into Sum
c. Dim intNumBooks As Integer =
Aggregate book In BooksDataSet.tblBooks
Into Sum
d. Dim intNumBooks As Integer =
Aggregate book In BooksDataSet.tblBooks
Into Total
Step by Step Solution
3.38 Rating (164 Votes )
There are 3 Steps involved in it
b Dim intNumBooks A... View full answer
Get step-by-step solutions from verified subject matter experts
