Archive for the 'PL/SQL Tips' Category

When you print out names, first characters must be always upper case.
There is a method in Oracle DB.
INITCAP(”)


FOR REC IN (SELECT COLUMN FROM TABLE)
LOOP
– Do Whatever you want using REC.COLUMN
END LOOP;
Reference: http://www.adp-gmbh.ch/ora/plsql/loops.html