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 Subquery Exercises: Display the names and numbers of all salesmen who had more than one customer

SQL SUBQUERY: Exercise-11 with Solution

11. From the following tables write a SQL query to find salespeople who had more than one customer. Return salesman_id and name.

Sample table: customer


Sample table: salesman


Sample Solution:

SELECT salesman_id,name 
FROM salesman a 
WHERE 1 < 
    (SELECT COUNT(*) 
     FROM customer 
     WHERE salesman_id=a.salesman_id);

Output of the Query:

salesman_id	name
5001		James Hoog
5002		Nail Knite

Explanation:

SQL Subqueries: Display the names and numbers of all salesmen who had more than one customer.

Practice Online


Inventory database model

Query Visualization:

Duration:

Query visualization of Display the names and numbers of all salesmen who had more than one customer - Duration

Rows:

Query visualization of Display the names and numbers of all salesmen who had more than one customer - Rows

Cost:

Query visualization of Display the names and numbers of all salesmen who had more than one customer - Cost

Contribute your code and comments through Disqus.

Previous: From the following tables, write a SQL query to find the customers whose orders issued on 17th August, 2012. Return ord_no, purch_amt, ord_date, customer_id, salesman_id and cust_name.
Next: From the following tables, write a SQL query to find those orders, which are higher than average amount of the orders. Return ord_no, purch_amt, ord_date, customer_id and salesman_id.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



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