i want to display 1 to 10 numbers using one select statement.
Answer Posted / kriti sinha
For in 10 rows in a single column
select level from dual connect by level<=10
for 10 numbers in a single column
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;
For 10 rows in 10 columns
select 1,2,3,4,5,6,7,8,9,10 from dual;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is denormalization in a database?
What are stored procedures in mysql?
Can we use views in stored procedure?
What is a schema sql?
What is the difference between delete and truncate commands?
How can the performance of a trigger be improved?
How to select 10 records from a table?
How can we optimize a sql query?
what is index? : Sql dba
How can I see all tables in sql?
What is dynamic sql in pl sql?
How to rename a column in the output of sql query?
what is the difference between a web-garden and a web-farm? : Sql dba
How can I delete duplicate rows?
When do we use triggers?