Difference between revisions of "SUB QUERIES"

From rbachwiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 44: Line 44:
  WHERE s.sales_date = st.sales_date;e
  WHERE s.sales_date = st.sales_date;e


Problem: Select data from sales table where the selected TOTAL_AMOUNT are greater than the average TOTAL_AMOUNT of their respective customer
SELECT *
FROM SALES  a
WHERE TOTAL_AMOUNT >(SELECT AVG(TOTAL_AMOUNT)
  FROM SALES b
  WHERE b.customer_id = a.customer_id)
ORDER BY CUSTOMER_ID;
SUBQUERY is executed for each row on the sales table


[[#Rules for Character Strings Command|Back To Top]]-[[Main_Page| Home]] - [[Oracle_SQL|Category]]
[[#Rules for Character Strings Command|Back To Top]]-[[Main_Page| Home]] - [[Oracle_SQL|Category]]

Latest revision as of 23:08, 14 November 2017

A SUB QUERY is a query within a query which can return one or more rows

SELECT * FROM SALES
WHERE CUSTOMER_ID =
(SELECT CUSTOMER_ID FROM CUSTOMER WHERE LAST_NAME = 'JOSEPH'

A SUBQUERY executes first before the main query, SO the customer id was returned from the the subquery then passed to the original query

When the subquery returns more than one value use the IN instead of the =

SELECT * FROM SALES
WHERE CUSTOMER_ID IN  
(SELECT CUSTOMER_ID FROM CUSTOMER WHERE REGION ='SOUTH')
SELECT * FROM SALES
WHERE CUSTOMER_ID IN
(SELECT CUSTOMER_ID FROM CUSTOMER WHERE LAST_NAME = 'JOSEPH' OR last_name = 'mann'

SUBQUERY ON MULTIPLE COLUMNS

SELECT sales_date, order_id, customer_id, product_id, unit_price
FROM sales
WHERE (product_id, unit_price) IN
(
SELECT product_id, unit_price
FROM sales
WHERE sales_date = '01-jan-2015'
)

USING subqueries in the FROM clause

Used mostly when we join detailed data with aggregated data
SELECT 
s.sales_date,
s.order_id, 
s.customer_id, 
s.salesperson_id, 
s.total_amount, 
st.sales_total
FROM sales s, 
(SELECT sales_date, sum(total_amount) AS sales_total 
FROM sales
GROUP BY sales_date) st
WHERE s.sales_date = st.sales_date;e

Problem: Select data from sales table where the selected TOTAL_AMOUNT are greater than the average TOTAL_AMOUNT of their respective customer

SELECT *
FROM SALES  a 
WHERE TOTAL_AMOUNT >(SELECT AVG(TOTAL_AMOUNT)
 FROM SALES b
 WHERE b.customer_id = a.customer_id)
ORDER BY CUSTOMER_ID;

SUBQUERY is executed for each row on the sales table

Back To Top- Home - Category