0 votes
in SQLite by
What is the use of SQLite GROUP BY clause?

1 Answer

0 votes
by

SQLite GROUP BY clause is used to collect the same elements into a group. It is used with SELECT statement.

Syntax:

SELECT column-list    

FROM table_name    

WHERE [ conditions ]    

GROUP BY column1, column2....columnN    

ORDER BY column1, column2....columnN   

Related questions

0 votes
asked Nov 13, 2021 in SQLite by sharadyadav1986
0 votes
asked Apr 22, 2020 in DBMS by Hodge
...