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: Find the sums of the order amounts, grouped by date, eliminating all those dates where the sum was not at least 1000.00 above the MAX amount for that date

SQL SUBQUERY: Exercise-14 with Solution

14. Write a query to find the sums of the amounts from the orders table, grouped by date, and eliminate all dates where the sum was not at least 1000.00 above the maximum order amount for that date.

Sample table: Orders


Sample table: Customer


Sample Solution:

SELECT ord_date, SUM (purch_amt)
FROM orders a
GROUP BY ord_date
HAVING SUM (purch_amt) >
    (SELECT 1000.00 + MAX(purch_amt) 
     FROM orders b 
     WHERE a.ord_date = b.ord_date);

Output of the Query:

ord_date	sum
2012-09-10	6979.15
2012-10-10	4463.83

Explanation:

SQL Subqueries:  Find the sums of the order amounts, grouped by date, eliminating all those dates where the sum was not at least 1000.00 above the MAX amount for that date.

Practice Online


Inventory database model

Query Visualization:

Duration:

Query visualization of Find the sums of the order amounts, grouped by date, eliminating all those dates where the sum was not at least 1000.00 above the MAX amount for that date - Duration

Rows:

Query visualization of Find the sums of the order amounts, grouped by date, eliminating all those dates where the sum was not at least 1000.00 above the MAX amount for that date - Rows

Cost:

Query visualization of Find the sums of the order amounts, grouped by date, eliminating all those dates where the sum was not at least 1000.00 above the MAX amount for that date - Cost

Contribute your code and comments through Disqus.

Previous: Write a queries to find all orders with order amounts which are on or above-average amounts for their customers.
Next: Write a query to extract the data from the customer table if and only if one or more of the customers in the customer table are located in London.

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