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
Show the two pl/sql cursor exceptions.
How do you update a value in sql?
Can a table contain multiple foreign key’s?
What is union, minus and interact commands?
What is foreign key in sql with example?
What is on delete restrict?
Is hadoop a nosql?
What is difference between ms sql and mysql?
Explain 3 basic parts of a trigger.
Differentiate pl/sql and sql?
What is dynamic query?
What is the file extension for sql database?
What is primary key and unique key?
what is sql profiler? : Sql dba
Is merge a dml statement?