i want to display 1 to 10 numbers using one select statement.
Answer Posted / pramod kumar behera
select rownum from dual connect by level <=10;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
what is oltp (online transaction processing)? : Sql dba
What is nested table in pl sql?
hi,i plan to put experience on PLSQL ,can anyone suggest me for any institutes in bangalore or how to prepare for interviews
Is sql free?
Explain the types of joins in sql?
The select into statement is most often used to create backup copies of tables or for archiving records?
What is sql table?
What are triggers and its types?
what is a cursor? : Sql dba
What are three advantages to using sql?
tell me about various levels of constraint. : Sql dba
What does pragma mean?
What is difference between rank () row_number () and dense_rank () in sql?
What are instead of triggers?
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