To Examples
Display from the groceries.mdb database in a DataGrid control. Choose a select statement to control which data is displayed.
SELECT * FROM Groceries; SELECT Item, Price FROM Groceries; SELECT Item, Price FROM Groceries WHERE OnSale=True; SELECT Price, Quantity FROM Groceries WHERE Item='Dog Food'; SELECT Item, Price FROM Groceries WHERE Price > 3.00; SELECT Item, Price FROM Groceries WHERE 1.00 <= Price AND Price<=3.50;