Difference between revisions of "TYPES"

From rbachwiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:


==MAX() Returns the largest Value ==
==MAX() Returns the largest Value ==
'''Ignores Null values'''
SELECT MAX(customer#)
FROM orders;


==SUM() Returns the sum of values ==
==SUM() Returns the sum of values ==
'''Returns the count in one column and the sum of the total_amount column'''
  SELECT COUNT(*), SUM(TOTAL_AMOUNT) from sales;
  SELECT COUNT(*), SUM(TOTAL_AMOUNT) from sales;
'''Returns the count in one column and the sum of the total_amount column'''
 
SELECT sum((paideach-cost)*quantity) "Total Profit"
FROM orderitems JOIN books USING (isbn)
WHERE order# = 1007


==AVG() Returns the Average of Values ==
==AVG() Returns the Average of Values ==
Line 14: Line 21:


==COUNT() Returns the number or rows ==
==COUNT() Returns the number or rows ==
''' Returns the record count'''
  SELECT COUNT(*) FROM SALES
  SELECT COUNT(*) FROM SALES
''' Returns the record count'''
 
'''Count all orders not yet shipped'''
SELECT COUNT(*) "ORDERS NOT SHIPPED"
FROM orders
WHERE shipdate IS NULL;
 
==VARIANCE ==
'''Returns the variance - ignores NULL values'''
SELECT VARIANCE(retail)
FROM books;
 


==FIRST() Returns the first value of the group==
==FIRST() Returns the first value of the group==

Latest revision as of 21:12, 7 November 2017

MIN()Returns the smallest Value

SELECT COUNT(*), SUM(TOTAL_AMOUNT), MIN(TOTAL_AMOUNT) from sales;

Returns the count in one column, the sum of the total_amount column and Min amount

MAX() Returns the largest Value

Ignores Null values

SELECT MAX(customer#)
FROM orders;

SUM() Returns the sum of values

Returns the count in one column and the sum of the total_amount column

SELECT COUNT(*), SUM(TOTAL_AMOUNT) from sales;
SELECT sum((paideach-cost)*quantity) "Total Profit"
FROM orderitems JOIN books USING (isbn)
WHERE order# = 1007

AVG() Returns the Average of Values

SELECT AVG(cost)
FROM books;

COUNT() Returns the number or rows

Returns the record count

SELECT COUNT(*) FROM SALES

Count all orders not yet shipped

SELECT COUNT(*) "ORDERS NOT SHIPPED"
FROM orders
WHERE shipdate IS NULL;

VARIANCE

Returns the variance - ignores NULL values

SELECT VARIANCE(retail)
FROM books;


FIRST() Returns the first value of the group

LAST() Returns the last value of the group

Back To Top- Home - Category