Question: 2. Using the Books database from the lesson, which of the following will select book number 401? The BookNumber field is numeric. a. Dim records
2. Using the Books database from the lesson, which of the following will select book number 401? The BookNumber field is numeric.
a. Dim records = From book In BooksDataSet.tblBooks Where book.BookNumber = "401"
Select book
b. Dim records = From book In BooksDataSet.tblBooks Select book.BookNumber = 401
c. Dim records = From book In BooksDataSet.tblBooks Where book.BookNumber = 401 Select book
d. Dim records = From book In BooksDataSet.tblBooks Select BookNumber = 401
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
