SET HEADING
SET HEADING [ON | OFF]
This command turns the display of column headings on or off as desired.If no parameter is supplied to the command, it toggles the current state of the heading display.
The heading display setting only affects the tabular display (list off) of query results.The list display (list on) always includes the column names.
SQL> set heading off; SQL> select count(*) from employee; 42 SQL> set heading on; SQL> select count(*) from employee; COUNT ============ 42