suppose we have values like 1 5 7 in a colum.Now we want
numbers like(2 3 4 6) that exists between 1 5 7.How can we
do this using sql query??
Answer Posted / ajitnayak
select rownum
from dual
connect by level <= (select max(a) from mising_values)
minus
select * from mising_values;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List and explain the different types of join clauses supported in ansi-standard sql?
What is union, minus and interact commands?
How do you remove duplicate records from a table?
What is sap sql anywhere?
Why are indexes and views important to an organization?
What is the difference between function and procedure in pl/sql?
What is mutating trigger?
What is right join in sql?
How to make a copy values from one column to another in sql?
What is sql comments?
What is a record in a database?
What is the sql query to display the current date?
What is audit logout in sql profiler?
What is meant by cursor in sql?
What is on delete set null?