The tblBooks table in the Books database contains a numeric field named BookNumber. Which of the following

Question:

The tblBooks table in the Books database contains a numeric field named BookNumber. Which of the following will select book number 401 from the BooksDataSet?

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

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: