The WHERE clause is used to filter the result set based on the condition specified following the word WHERE.
The WHERE clause can be used with the following types of SQL statements:
The syntax for using WHERE in the SELECT statement is as follows:
The syntax for using WHERE in the UPDATE statement is as follows:
The syntax for using WHERE in the DELETE statement is as follows:
"Condition" can include a single comparison clause (called simple condition) or multiple comparison clauses combined together using AND or OR operators (compound condition).
We provide examples here to show how to use WHERE in the SELECT statement.
To select all stores with sales above 1,000ドル in Table Store_Information,
Table Store_Information
we key in,
Result:
To view all data with sales greater than 1,000ドル or with transaction date of 'Jan-08-1999', we use the following SQL,
Result:
The first returned row has sales greater than 1,000ドル. The next two returned rows have a transaction date of 'Jan-08-1999.'
As mentioned above, the WHERE clause can be used with UPDATE and DELETE statements in addition to the SELECT statement. Examples of how to use the WHERE clause with these two commands can be seen in the UPDATE and DELETE sections.
For these exercises, assume we have a table called Users with the following data:
Table Users
1. Which of the following SQL statement is valid? (There can be more than one answer)
a) SELECT * FROM Users WHERE Gender = 'M';
b) SELECT * WHERE Gender = 'M' FROM Users;
c) SELECT Gender= 'M' FROM Users;
d) SELECT Gender FROM Users WHERE Last_Name = 'Wilkes';
2. What's the result of the following query?
SELECT * FROM Users WHERE Join_Date = 'Apr-09-2015';
3. (True or False) The condition used in the WHERE clause must include a column that is part of the SELECT clause.
1. a), d)
2. The result is,
3. False. The column used in the WHERE clause can be any column in the table. It is not necessary for the column to be part of the SELECT clause.
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.