Examples

Example 1: Enter a label on the DEPTNO column of table DEPARTMENT.

   LABEL ON COLUMN DEPARTMENT.DEPTNO
     IS 'DEPARTMENT NUMBER'

Example 2: Enter a label on the DEPTNO column of table DEPARTMENT where the column heading is shown on two separate lines.

  LABEL ON COLUMN DEPARTMENT.DEPTNO
    IS 'Department          Number'

Example 3: Enter a label on the PAYROLL package.

   LABEL ON PACKAGE PAYROLL
     IS 'Payroll Package'