Subject | How to shorten =================================== between header and data rows? |
---|---|
Author | ehaerim |
Post date | 2012-06-08T00:51:55Z |
When I use the following isql statement,
SQL> select substring(data_feed_name from 1 for 10) dfn from test;
DFN
===============================
InvestWare
I want the ============================= to be shortened to 15 so that it looks like
DFN
===============
InvestWare
Please let me know how to do this.
thx
HR
SQL> select substring(data_feed_name from 1 for 10) dfn from test;
DFN
===============================
InvestWare
I want the ============================= to be shortened to 15 so that it looks like
DFN
===============
InvestWare
Please let me know how to do this.
thx
HR