Google News
logo
SQLite - Interview Questions
What is SQLite COUNT aggregate function?
The SQLite COUNT function is used to retrieve total count of an expression.
 
Syntax :
SELECT COUNT(aggregate_expression)    
FROM tables    
[WHERE conditions]; 
Advertisement