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: Highest purchase amount on a particular date for individual salesman

SQL Aggregate Functions: Exercise-11 with Solution

From the following table, write a SQL query to determine the highest purchase amount made by each salesperson on '2012-08-17'. Return salesperson ID, purchase amount.

Sample table: orders


Sample Solution :

SELECT salesman_id,MAX(purch_amt) 
FROM orders 
WHERE ord_date = '2012-08-17' 
GROUP BY salesman_id;

Output of the Query:

salesman_id	max
5003		110.50
5007		75.29

Relational Algebra Expression:

Relational Algebra Expression: Highest purchase amount on a particular date for individual salesman.

Relational Algebra Tree:

Relational Algebra Tree: Highest purchase amount on a particular date for individual salesman.

Explanation:

Syntax of Highest purchase amount on a particular date for individual salesman

Pictorial presentation :

Highest purchase amount on a particular date for individual salesman

Practice Online


Query Visualization:

Duration:

Query visualization of Highest purchase amount on a particular date for individual salesman - Duration

Rows:

Query visualization of Highest purchase amount on a particular date for individual salesman - Rows

Cost:

Query visualization of Highest purchase amount on a particular date for individual salesman - Cost

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

Previous: From the following table, write a SQL query to find the highest purchase amount ordered by each customer on a particular date. Return, order date and highest purchase amount.
Next: From the following table, write a SQL query to find highest order (purchase) amount by each customer in a particular order date. Filter the result by highest order (purchase) amount above 2000.00. Return customer id, order date and maximum purchase amount.

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