January 2020
Beginner
256 pages
5h 11m
English
In this lesson, you’ll learn how to combine WHERE clauses to create powerful and sophisticated search conditions. You’ll also learn how to use the NOT and IN operators.
WHERE ClausesAll the WHERE clauses introduced in Lesson 4, “Filtering Data,” filter data using a single criterion. For a greater degree of filter control, SQL lets you specify multiple WHERE clauses. These clauses may be used in two ways: as AND clauses or as OR clauses.
New Term: Operator
A special keyword used to join or change clauses within a WHERE clause. Also known as logical operators.
AND OperatorTo filter by more than one column, you use the AND operator to append conditions to your WHERE clause. The following ...
Read now
Unlock full access