i want to display 1 to 10 numbers using one select statement.
Answer Posted / subrat
SELECT LEVEL
FROM DUAL
CONNECT BY LEVEL<=9;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is coalesce faster than isnull?
Can we use two order by clause in query?
What is the difference between the implicit and explicit cursors?
what is the difference between nested subquery and correlated subquery?
What is dense_rank?
How do you identify a primary key?
What is mdb stand for?
Can pl sql procedure have a return statement?
How do I delete a trigger?
Is it mandatory for the primary key to be given a value when a new record is inserted?
How do I copy a table in sql?
Is natural join and inner join same?
What is the difference between sql and mysql?
What is group function in sql?
Does inner join remove duplicates?