Things You'll Need:
- Microsoft Access 2003 or 2007
-
Step 1
Open the Access database and start a new query by clicking "Queries" under Objects and then clicking "New." Select the table to be queried, click "Add" and then click "Close."
-
Step 2
View the query in SQL view by clicking the "View" drop down menu below the "File" menu in Access 2003, or by going to the "Design" tab in Access 2007 and clicking the "View" drop down. Select "SQL" from the list.
-
Step 3
Type a query into the SQL window using the "Where" clause. The syntax of the "Where" clause is ""Where" field = criterion."
-
Step 4
Begin the query with "Select *" and add "From [Table Name]." Add the "Where" clause. An example of a query is "Select * FROM Products WHERE Units >100." This tells Access you want the return to include items from the "Products" table where the "Units" column contains a number greater than 100.
-
Step 5
Run the query by clicking the "Run" button, which looks like a red exclamation point. The Run button is on the Query Design toolbar in Access 2003, and on the Design tab in the Results group.













