i want to display 1 to 10 numbers using one select statement.
Answer Posted / pramod kumar behera
select level from dual connect by level <=10;
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is meant by truncate in sql?
What is sqlerrm?
What is the meaning of disabling a trigger?
Explain what is sql*plus?
What is sql engine in oracle?
what is the difference between delete and truncate statement in sql? : Sql dba
What is sql basics?
What's the procedure?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
What is dba in sql? : SQL DBA
What is difference between db2 and sql?
how to use in conditions? : Sql dba
What's the difference between a primary key and a clustered index?
What is sql table?
what is the difference between truncate and drop statements? : Sql dba