Question: 4. The tblInventory table contains a numeric field named InStock. Which of the following statements selects all records having at least 500 of the item
4. The tblInventory table contains a numeric field named InStock. Which of the following statements selects all records having at least 500 of the item in stock?
a. Dim records =
From item In InventoryDataSet.tblInventory Where item >= 500 Select item.InStock
b. Dim records =
From item In InventoryDataSet.tblInventory Select item.InStock >= 500
c. Dim records =
From item In InventoryDataSet.tblInventory Where item.InStock >= 500 Select item
d. Dim records =
Select item.InStock >= 500 From tblInventory
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
