Oracle Tutorial

What is Oracle
SQL Keywords

Oracle Wildcards

Oracle Wildcards

Oracle Aliases

Oracle Aliases

MySQL Tutorial

MySQL Tutorial

PL/SQL Tutorial

PL/SQL Tutorial

Oracle Interview Questions

Oracle Interview Questions and Answers


Oracle Analytic Functions

Oracle functions are built into Oracle and are available for use in various appropriate Oracle statements. You can also create your own function using PL/SQL.

Function Description
CORRReturns the coefficient of correlation of a set of number pairs.
COVAR_POPReturns the population covariance of a set of number pairs.
COVAR_SAMPReturns the sample covariance of a set of number pairs.
CUME_DISTReturns the cumulative distribution of a value in a group of values.
DENSE_RANKReturns the rank of a row in a group of rows.
FIRST_VALUEReturns the first value in an ordered set of values from an analytic window.
LAGReturns values from a previous row in the table.
LAST_VALUEReturns the last value in an ordered set of values from an analytic window.
LEADReturns values from the next row in the table.
LISTAGGConcatenates values of the measure_column for each GROUP based on the order_by_clause.
NTH_VALUEReturns the nth value in an ordered set of values from an analytic window.
RANKReturns the rank of a value in a group of values.
STDDEVReturns the standard deviation of a set of numbers.
VAR_POPReturns the population variance of a set of numbers.
VAR_SAMPReturns the sample variance of a set of numbers.
VARIANCEReturns the variance of a set of numbers.