What are Group Functions in Oracle? - COUNT(): This function returns the number of rows in the group. A column name or ‘*’ may be passed as a parameter.
- MIN(column_name): This function returns the minimum value of the expression evaluated on each row of the group.
- MAX(column_name): It returns the maximum value of the expression evaluated on each row of the group.
- AVG(column_name): It returns the average value of the expression evaluated on each row of the group.
|
Oracle numeric functionsOracle numeric functions - NVL, ABS,CEIL,FLOOR, MOD, SQRT, EXP,LN AND LOG, ROUND AND TRUNC, AVG, COUNT, MAX, MIN AND SUM...