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
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
What are the sql commands?
How do you remove duplicate records from a table?
explain mysql aggregate functions. : Sql dba
What is a procedure in pl sql?
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
Is foreign key mandatory?
What is difference between ms sql and mysql?
What is scalar data type in pl sql?
Can a select statement fire a trigger?
What is left join example?
How do I order by ascending in sql?
what is the difference between group by and order by in sql? : Sql dba
What is the use of sql trace?
What is difference between sql and excel?