-
Step 1
Open an existing Microsoft Access database. If creating a new database, note that queries will not yield results until tables are filled with data.
-
Step 2
Select "Queries" in the database window. Open an existing query in Design View by highlighting the query and pressing "Design" in the query window. Create a new query by pressing "Create a new query in Design View."
-
Step 3
Press the "Query Type" button on the query toolbar. Select your desired query type. This will provide you with a bare-bones SQL query. This isn't required if you are familiar with SQL programming. For more assistance, set up your basic query in Design View before switching to SQL View.
-
Step 4
Press the "View" button on the query toolbar. Select "SQL View."
-
Step 5
Type your SQL query as desired. End all SQL queries with a semicolon. Only the last line of the query requires a semicolon. Table names along with the desired field names are included after the first clause. The FROM clause should include your desired table name. Only the first two lines are required. Sorting and criteria require additional lines.










