i want to display 1 to 10 numbers using one select statement.
Answers were Sorted based on User's Feedback
Answer / gangadhar
SQL> select *
2 from xmltable('for $i in 1 to 10 return $i');
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / hemant
select 1||chr(10)||2||chr(10)||3||chr(10)||4||chr(10)
||5||chr(10)||6||chr(10)||7||chr(10)||8||chr(10)||9||chr(10)
||10 from dual
/
Is This Answer Correct ? | 6 Yes | 12 No |
What is java sql driver?
What is an emotional trigger?
Give the structure of the function ?
What is the Diff b/w Constraints and Trigeer
What are the different types of sql commands?
..........refers to the disk mirroring
Define overloaded procedure?
What is the diff between Truncate table / delete <table name> purge
How does rowid help in running a query faster?
Write the alter statement to enable all the triggers on the t.students table.
Write a program that shows the usage of while loop to calculate the average of user entered numbers and entry of more numbers are stopped by entering number 0?
Is join an inner join?