Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

SQL Exercises: Find the salesmen and customers with their name and cities, who belongs to the same city

SQL JOINS: Exercise-1 with Solution

From the following tables write a SQL query to find the salesperson and customer who reside in the same city. Return Salesman, cust_name and city.

Sample table: salesman


Sample table: customer


Sample Solution:

SELECT salesman.name AS "Salesman",
customer.cust_name, customer.city 
FROM salesman,customer 
WHERE salesman.city=customer.city;

Output of the Query:

Salesman	cust_name	city
James Hoog	Nick Rimando	New York
James Hoog	Brad Davis	New York
Pit Alex	Julian Green	London
Mc Lyon		Fabian Johnson	Paris
Nail Knite	Fabian Johnson	Paris
Pit Alex	Brad Guzan	London

Explanation:

Syntax of prepare a list with salesman name, customer name and their cities for the salesmen and customer who belongs to same city

Pictorial presentation:

Result of prepare a list with salesman name, customer name and their cities for the salesmen and customer who belongs to same city

Practice Online


Query Visualization:

Duration:

Query visualization of Find the salesmen and customers with their name and cities, who belongs to the same city - Duration

Rows:

Query visualization of Find the salesmen and customers with their name and cities, who belongs to the same city - Rows

Cost:

Query visualization of Find the salesmen and customers with their name and cities, who belongs to the same city - Cost

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: SQL JOINS Exercises Home
Next: From the following tables write a SQL query to find those orders where order amount exists between 500 and 2000. Return ord_no, purch_amt, cust_name, city.

Test your Programming skills with w3resource's quiz.

What is the difficulty level of this exercise?



SQL: Tips of the Day

SQL Server SELECT into existing table.

INSERT INTO dbo.TABLETWO
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

This assumes there's only two columns in dbo.TABLETWO - you need to specify the columns otherwise:

INSERT INTO dbo.TABLETWO
  (col1, col2)
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

Database: SQL Server

Ref: https://bit.ly/3y6tpA3