I am giving a select statement in SQL*Plus. It is retreiving the data but the column name is displayed every time after certain number of rows. I want the column name to be displayed only once.
For example:
select emp_name from employee.
currently gets output:
emp_name
========
raman
sunil
rajesh
dilip
emp_name
========
rahul
pramod
ankita
I want output like this:
emp_name
========
pankaj
ruchi
amar
rakesh
dilip
raju
rahul
all under single column heading. How can I do that?