DB2 equivalent for ORACLE SQL*Plus BREAK???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DTV12345
    New Member
    • Jun 2007
    • 5

    DB2 equivalent for ORACLE SQL*Plus BREAK???

    Greetings!

    This is an excerpt from the Oracle documentation:" ...ORACLE SQL*Plus BREAK command creates a subset of records and add space and/or summary lines after each subset. The column you specify in a BREAK command is called a break column which suppresses duplicate values. For example

    SQL> BREAK ON DEPTNO SKIP 1 // To insert a blank line
    SQL> SELECT DEPTNO, ENAME, SAL
    2 FROM EMP
    3 WHERE SAL < 2500
    4 ORDER BY DEPTNO;

    ..."
    Is there a DB2 equivalent for BREAK?
Working...