Quick Search:
 
 Oracle PL/SQL: SQL*Plus formatting Jump to:  
Category: >> Oracle PL/SQL >> SQL*Plus formatting  

<< lastnext >>

Snippet Name: SQL*Plus formatting

Description: Column formatting in the SQL*Plus application to make reading query results easier.

Also see:
» SQL*Plus Configuration
» SQL*Plus SQL Prompt
» SQL*Plus Spool Command
» SQL*Plus Display commands
» SQL*Plus Describe
» SQL*Plus connect

Comment: (none)

Language:
Highlight Mode: PLSQL
Last Modified: March 07th, 2009

COL object_name FORMAT a30
 
SELECT object_name, object_type
FROM user_objects
WHERE ROWNUM < 11;
 
 
TO format a NUMBER column AS dollars -
 
COL salary FORMAT $99,999
 
 
Display "-" after a negative VALUE 
COL test FORMAT 9999MI
 
Displays a negative VALUE IN <angle brackets> 
COL test FORMAT 9999PR
 
 
Display the DECIMAL character 
COL test FORMAT 9999D99 
 
 
Display VALUE IN scientific notation 
COL test FORMAT 9999.99EEEE 
 
 
Format a NUMBER columns that represent Julian dates AS MM/DD/YY 
COL test FORMAT DATE 
 
 
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org