In some instances, you might want to apply a number of search conditions to the same data column. For example, you might want to:
employee
table or for employees who are in different salary ranges. This type of search requires an OR condition.Note The information in this topic applies to search conditions in both the WHERE and HAVING clauses of a query. The examples focus on creating WHERE clauses, but the principles apply to both types of search conditions. For details about creating HAVING clauses, see Specifying Conditions for Groups.
To search for alternative values in the same data column, you specify an OR condition. To search for values that meet several conditions, you specify an AND condition.
Using an OR condition enables you to specify several alternative values to search for in a column. This option expands the scope of the search and can return more rows than searching for a single value.
Tip You can often use the IN operator instead to search for multiple values in the same data column. For details, see Comparison Operators.
To specify an OR condition
The Query Designer creates a WHERE clause that contains an OR condition such as the following:
SELECT fname, lname
FROM employees
WHERE (salary < 30000) OR (salary > 100000)
Using an AND condition enables you to specify that values in a column must meet two (or more) conditions for the row to be included in the result set. This option narrows the scope of the search and usually returns fewer rows than searching for a single value.
Tip If you are searching for a range of values, you can use the BETWEEN operator instead of linking two conditions with AND. For details, see Comparison Operators.
To specify an AND condition
The Query Designer creates a WHERE clause that contains an AND condition such as the following:
SELECT title_id, title
FROM titles
WHERE (title LIKE '%Cook%') AND
(title LIKE '%Recipe%')