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
What is view explain with example?
How many types of index are there?
What are the operators used in select statements?
How do I run a pl sql procedure in sql developer?
What is your daily office routine?
How to raise user-defined exception with custom sqlerrm ?
Explain the uses of database trigger.
What is sql server and ase?
What is meaning of <> in sql?
Does google use sql?
What is the difference between syntax error and runtime error?
Explain what is a column in a table?
What are triggers in sql?
how to use 'mysql' to run sql statements? : Sql dba
What are different types of queries in sql?