SQLPLUS Make column heading BOLD?
AK111Dec 10 2007 — edited Dec 10 2007Hi I have a .sql file which results I am sening via email.
I want to make the column headings bold.
.sql file looks more or less like as follows-
set feedback off
set linesize 150
set pagesize 1000
set heading off
select sysdate from dual;
set heading on
column A format A20
column B format A30
column C format A30
select A,B,C from TABLEQ;
quit;