Google News
logo
SQLite - Interview Questions
What is SQLite AVG aggregate function?
The SQLite AVG function returns the average value of the expression.
 
Syntax :
SELECT AVG(aggregate_expression)    
FROM tables    
[WHERE conditions];
Advertisement