What is the data type of the column of Dual table?

Questions by globalanil18   answers by globalanil18

Showing Answers 1 - 3 of 3 Answers

Shashank

  • May 7th, 2007
 

DataType of the Column of Dual table is Varchar2(1)

Thanks,
Shashank

g_sidhu

  • Feb 12th, 2008
 

The DUAL table is owned by the user SYS and can be accessed by all users. It contains one column, DUMMY, and one row with the value X. The DUAL table is useful when you want to return a value once only: for instance, the value of a constant, pseudocolumn, or expression that is not derived from a table with user data. The DUAL table is generally used for SELECT clause syntax completeness, because both SELECT and FROM clauses are mandatory, and several calculations do not need to select from actual

tables.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions