0 votes
in SQLite by
What is SQLite MAX aggregate function?

1 Answer

0 votes
by

SQLite MAX aggregate function is used to fetch the maximum value of an expression.

Syntax:

SELECT MAX(aggregate_expression)    

FROM tables    

[WHERE conditions];     

...