When processing SELECT ... statements having a GROUP BY clause, i.e.
SELECT ... GROUP BY ...;
in C, i.e. with a loop like
rc=sqlite3_step(stmt);
while rc==SQLITE_ROW {
...
rc=sqlite3_step(stmt);
}
is there a way to know when a group ends and the next starts? I have this
of course if the group by expression is also one of the result columns, but
this is not always necessarily the case.
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users