alexfu / SQLiteQueryBuilder

A library that provides a simple API for building SQLite query statements in Java.
MIT License
70 stars 21 forks source link

COUNT statement #49

Open bbrakenhoff opened 8 years ago

bbrakenhoff commented 8 years ago

Hi,

I posted another issue #48 where you asked me to split my features in different issues, so this is the first one.

I wonder if you could find a way to easily make a select count statement like below :).

"SELECT COUNT(*) " + "FROM " + MOVIE_TABLE + " " + "WHERE " + MOVIE_ID_TRAKT + "=?";

EmmanuelMess commented 6 years ago

Also please add support for other functions, like SUM() and AVG().