Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

How To Set Up SQL*Plus Output Format?

Nice?Vote!

1 Answer

Nice?Vote!
If you want to practice SQL statements with SQL*Plus, you need to set up your SQL*Plus output formatting parameter properly. The following SQL*Plus commands shows you some examples:

COLUMN id FORMAT 9999;
COLUMN url FORMAT A24;
COLUMN notes FORMAT A12;
COLUMN counts FORMAT 999999;
SET NULL 'NULL';
answered 1 year ago by siva (10,720 points) edited 1 year ago by R

Related questions