Untitled
tags: #sql/aggregate_functions
The AVG() function returns the average value of a numeric column.
SELECT AVG(column_name)AS result
FROM table_name
WHERE condition;
Select a result to preview
tags: #sql/aggregate_functions
The AVG() function returns the average value of a numeric column.
SELECT AVG(column_name)AS result
FROM table_name
WHERE condition;