SQL Exercises: Find the customer and salesmen who lives in same city
SQL Query on Multiple Tables: Exercise-1 with Solution
Write a query to find those customers with their name and those salesmen with their name and city who lives in the same city.
Sample table: salesman
Sample table: customer
Sample Solution:
SELECT customer.cust_name,
salesman.name, salesman.city
FROM salesman, customer
WHERE salesman.city = customer.city;
Output of the query:
cust_name name city Nick Rimando James Hoog New York Brad Davis James Hoog New York Julian Green Pit Alex London Fabian Johnson Mc Lyon Paris Fabian Johnson Nail Knite Paris Brad Guzan Pit Alex London
Explanation:

Pictorial presentation:

Practice Online
Query Visualization:
Duration:

Rows:

Cost:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: SQL Query on Multiple Tables Exercises Home
Next: Write a SQL statement to find the names of all customers along with the salesmen who works for them.
What is the difficulty level of this exercise?
- New Content published on w3resource:
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework