SQL Functions
ISNULL( column_name, value ) - function is used to specify how we want to treat NULL values. e.g. ISNULL(Quantity, 0)) AVG(column_name) - function returns the average value of a numeric column. COUNT(column_name) - function returns the number of rows that matches a specified criteria. COUNT(DISTINCT column_name) - function returns the number of distinct values of the specified column. FIRST(column_name) - function returns the first value of the selected column. LAST(column_name) - function returns the last value of the selected column. MAX(column_name) - function returns the largest value of the selected column. MIN(column_name) - function returns the smallest value of the selected column. SUM(column_name) - function returns the total sum of a numeric column. UCASE( column_name ) - function converts the value of a field to uppercase. LCASE( column_name ) - function converts the value of a field to lowercase. LEN( column_name ) - func...