how to produce numbers from 1 to 10 using dual table
Answer Posted / anil kumar prajapati
The DUAL is special one row, one column table present by
default in all Oracle databases. The owner of DUAL is SYS
(SYS owns the data dictionary, therefore DUAL is part of the
data dictionary.) but DUAL can be accessed by every user.
The table has a single VARCHAR2(1) column called DUMMY that
has a value of 'X'. MySQL allows DUAL to be specified as a
table in queries that do not need data from any tables. In
SQL Server DUAL table does not exist, but you could create
one.
The DUAL table was created by Charles Weiss of Oracle
corporation to provide a table for joining in internal
views.
Example
Select Row r
From dual
Connect By Row <= :100
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the usage of control file in oracle?
Explain overloading. Can functions be overloaded?
What is oracle open database communication (odbc)?
How will you identify oracle database software release?
How to check database size in Oracle?
What is oracle sid?
What are the parameters that we can pass through a stored procedure?
what are the default admin accounts in Oracle 10g ?
What is the use of oracle?
How to assign a table row to a record variable?
How to apply filtering criteria at group level in oracle?
What is truncate oracle?
Explain a private synonyms?
What is the difference between truncate & delete command?
Can a formula column be obtained through a select statement ?