Home | History | Annotate | Download | only in sqlite

Lines Matching refs:groupBy

165      * @param groupBy A filter declaring how to group rows, formatted as an SQL
182 String groupBy, String having, String orderBy, String limit) {
183 if (TextUtils.isEmpty(groupBy) && !TextUtils.isEmpty(having)) {
185 "HAVING clauses are only permitted when using a groupBy clause");
205 appendClause(query, " GROUP BY ", groupBy);
262 * @param groupBy A filter declaring how to group rows, formatted
278 String selection, String[] selectionArgs, String groupBy,
280 return query(db, projectionIn, selection, selectionArgs, groupBy, having, sortOrder,
299 * @param groupBy A filter declaring how to group rows, formatted
317 String selection, String[] selectionArgs, String groupBy,
324 projectionIn, selection, selectionArgs, groupBy, having,
352 * @param groupBy A filter declaring how to group rows, formatted
369 String groupBy, String having, String sortOrder, String limit) {
393 groupBy, having, sortOrder, limit);
429 * @param groupBy A filter declaring how to group rows, formatted
447 String groupBy,
466 projectionIn, selection, selectionArgs, groupBy, having,