w3resource

SQL Exercises: Filter records using where clause and or operator

SQL Wildcard & Special Operator: Exercise-1 with Solution

From the following table, write a SQL query to find the details of those salespeople who come from the 'Paris' City or 'Rome' City. Return salesman_id, name, city, commission.

Sample table: salesman

 salesman_id |    name    |   city   | commission 
-------------+------------+----------+------------
        5001 | James Hoog | New York |       0.15
        5002 | Nail Knite | Paris    |       0.13
        5005 | Pit Alex   | London   |       0.11
        5006 | Mc Lyon    | Paris    |       0.14
        5007 | Paul Adam  | Rome     |       0.13
        5003 | Lauson Hen | San Jose |       0.12

Sample Solution:

-- This query selects all columns from the 'salesman' table.
SELECT *
-- Specifies the table from which to retrieve the data (in this case, 'salesman').
FROM salesman
-- Filters the rows to only include those where the 'city' column has the value 'Paris' or 'Rome'.
WHERE city = 'Paris' OR city = 'Rome';

Output of the Query:

salesman_id	name		city	commission
5002		Nail Knite	Paris	0.13
5006		Mc Lyon		Paris	0.14
5007		Paul Adam	Rome	0.13

Code Explanation:

The said SQL query that selects all columns (*) from the table called 'salesman' where the city is either 'Paris' or 'Rome'. It will return all rows from the 'salesman' table where the city column has a value of 'Paris' or 'Rome'.

Relational Algebra Expression:

Relational Algebra Expression: Filter records using where clause and or operator.

Relational Algebra Tree:

Relational Algebra Tree: Filter records using where clause and or operator.

Explanation:

Syntax of filter records using where clause and or operator

Visual presentation :

Result of filter records using where clause and or operator

Practice Online


Query Visualization:

Duration:

Query visualization of Filter records using where clause and or operator - Duration

Rows:

Query visualization of Filter records using where clause and or operator - Rows

Cost:

Query visualization of Filter records using where clause and or operator - Cost

Contribute your code and comments through Disqus.

Previous SQL Exercise: SQL Wildcard and Special operators Exercises Home
Next SQL Exercise: Filter records using in operator.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/sql-exercises/sql-wildcard-special-operator-exercise-1.php