Basic Oracle Concepts and Programming Question:

Download Job Interview Questions and Answers PDF

How To Set Up SQL*Plus Output Format in Oracle?

Oracle Database Interview Question
Oracle Database Interview Question

Answer:

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';


Download Oracle Database Interview Questions And Answers PDF

Previous QuestionNext Question
How To Create a Testing Table in Oracle?How To Insert a New Row into a Table in Oracle?