ABAP - Keyword Documentation →  ABAP - Reference →  Processing External Data →  ABAP Database Accesses →  Open SQL →  Open SQL - Reads →  SELECT clauses → 

SELECT - GROUP BY

Quick Reference

Syntax

... GROUP BY { { col1, col2, ...
                 sql_exp1, sql_exp2 ... }
             | (column_syntax) } ...


Extras:

1. ... col1, col2, ...

2. ... sql_exp1, sql_exp2, ...

3. ... (column_syntax)

Effect

In the results set of a query, the addition GROUP BY combines groups of rows that have the same content in the columns col1, col2, ... or that have the same result in the SQL expressions sql_exp1, sql_exp2, ... into a single row. This can be specified either statically as a comma-separated list col1, col2 ..., sql_exp1, sql_exp2, ... or dynamically as a parenthesized data object column_syntax. The order of the columns or SQL expression within the comma-separated list is not important.

If used, GROUP BY demands that only individual elements but not all the columns are specified in the SELECT list using *. If GROUP BY is used, all columns that are specified directly after SELECT or as an argument of an SQL expression and not as the argument of an aggregate function must be specified here. This means that columns not specified after GROUP BY can only be specified after SELECT as the argument of an aggregate function. The aggregate functions define how the content of these columns is determined in the combined row from the contents of all the rows of a group.

The addition GROUP BY cannot be specified for pooled tables and cluster tables. Columns specified after GROUP BY cannot be of the type STRING, RAWSTRING, LCHR or LRAW.

Notes

Addition 1

... col1, col2, ...

Effect

Specifies individual columns col1, col2, ..., directly whose content is used for grouping. The same column names must be specified as in the SELECT list. Alternative column names cannot be specified.

Notes

Example

The rows of database table SFLIGHT that have the same contents in column CARRID are combined. The lowest and highest values in column PRICE are determined for each of these groups and placed into the combined row.

DATA:
  BEGIN OF wa,
    carrid  TYPE sflight-carrid,
    minimum TYPE p DECIMALS 2,
    maximum TYPE p DECIMALS 2,
  END OF wa.

SELECT carrid, MIN( price ), MAX( price )
       FROM sflight
       GROUP BY carrid
       INTO (@wa-carrid, @wa-minimum, @wa-maximum).
  cl_demo_output=>write_data( wa ).
ENDSELECT.
cl_demo_output=>display( ).

Example

After entering any column of database table SPFLI the selected data is organized according to this column, which means that similar entries are combined. In count the number of flight connections for the different values in column spflicol is determined. If , for example, "CITYFROM" is entered as spflicol, the number of destinations for each departure city is determined in count. Various possible exceptions are handled in TRY control structures. In particular, user input is tested for validity using a method of the class CL_ABAP_DYN_PRG.

PARAMETERS spflicol TYPE c LENGTH 20.

DATA: dref TYPE REF TO data,
      long_name TYPE string,
      count  TYPE i,
      fieldlist TYPE string.

FIELD-SYMBOLS <fs> TYPE any.

AT SELECTION-SCREEN.
  TRY.
      cl_abap_dyn_prg=>check_column_name( spflicol ).
    CATCH cx_abap_invalid_name.
      MESSAGE 'Not allowed' TYPE 'E'.
  ENDTRY.

START-OF-SELECTION.
  TRY.
      long_name = 'spfli-' && spflicol.
      CREATE DATA dref TYPE (long_name).
      ASSIGN dref->* TO <fs>.
    CATCH cx_sy_create_data_error.
      MESSAGE 'Not allowed' TYPE 'E'.
  ENDTRY.

  fieldlist = spflicol && ', count(*)'.

  TRY.
      SELECT DISTINCT (fieldlist)
             FROM spfli
             GROUP BY (spflicol)
             INTO (@<fs>, @count).
        cl_demo_output=>write( |{ <fs> } {
                                  count }| ).
      ENDSELECT.
      cl_demo_output=>display( ).
    CATCH cx_sy_dynamic_osql_error.
      MESSAGE 'Not allowed' TYPE 'E'.
  ENDTRY.

Addition 2

... sql_exp1, sql_exp2, ...

Effect

Specifies SQL expressions whose result is used for grouping. Every SQL expression specified after GROUP BY must also be specified somewhere in the SELECT list, with identical spelling.

When a column is used as the operand of an SQL expression after GROUP BY, the effect on the interaction with the SELECT list is the same as specifying the column individually. A column that is not the argument of an aggregate function in the SELECT list can be specified either individually or as the operand of an SQL expression after GROUP BY. If a column like this is specified as the operand of an SQL expression, it does not need to be specified individually.

All SQL expressions possible in the SELECT list can be specified after GROUP BY with the following restrictions:

Notes

Executable Example

SQL Expressions, Use with GROUP BY

Addition 3

... (column_syntax)

Effect

As an alternative to specifying columns statically, a parenthesized data object column_syntax can be specified, which either contains the syntax of the list of columns or SQL expressions (with the exception of host expressions) or is initial when the statement is executed. The same applies to column_syntax as when specifying columns dynamically as a SELECT list.

If the content of column_syntax initial, either all the rows or no rows at all are grouped together. The columns after SELECT must then be specified either solely as arguments of aggregate functions or only directly. If not, this would raise a handleable exception CX_SY_OPEN_SQL_DB.

Security Note

If used wrongly, dynamic programming techniques can present a serious security risk. Any dynamic content that is passed to a program from the outside must be checked thoroughly or escaped before being used in dynamic statements. This can be done using the system class CL_ABAP_DYN_PRG or the predefined function escape. See SQL Injections Using Dynamic Tokens.

Notes

Comment characters placed within literals are, however, part of the literal.