GROUP FUNCTIONS
GROUP FUNCTIONS Group functions will be applied on all the rows but produces single output Sum Avg Max Min Count SUM This will give the sum of the values of the specified column. Syntax sum (column) EX SQL> select sum(sal) from emp; SUM(SAL) ———- 38600 AVG This will give the average of the […]