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

1 Answer

0 votes
by

The SQLite SUM aggregate function is used to get the total summed value of an expression.

Syntax:

SELECT SUM(aggregate_expression)    

FROM tables    

[WHERE conditions];   

Related questions

0 votes
asked Nov 13, 2021 in SQLite by sharadyadav1986
0 votes
asked Nov 13, 2021 in SQLite by sharadyadav1986
...