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

1 Answer

0 votes
by

The SQLite COUNT function is used to retrieve total count of an expression.

Syntax:

SELECT COUNT(aggregate_expression)    

FROM tables    

[WHERE conditions];  

...