Oracle SQL, PLSQL, APEX How To's by Dr. S. Raghunathan - HTML preview

PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.

 

 

11.02 How to display one column data with a label I title

 

SYNTAX:    select   ledger-name    as   ledger    from ledger-master;

RESULT: LEDGER cash account sales account

 

11.03 How to display title I label without conversion as uppercase and as we entered

 

Here an interesting aspect, we gave the title "ledger" in lower case letters, where  as it displayed the tittle in uppecase  letters, If we  want to get the  titlas we entered 1 typed then the title should be embedded by double-quotes,

SYNTAX:     select    ledger-name     "ledger"     from

 

ledger-master; RESULT: ledger