Google News
logo
SQLite - Interview Questions
What is SQLite MIN aggregate function?
SQLite MIN aggregate function is used to retrieve the minimum value of the expression.
 
Syntax :
SELECT MIN(aggregate_expression)    
FROM tables    
[WHERE conditions];
Advertisement