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
Explain autonomous transaction.
How do you write a subquery?
what is recursive stored procedure? : Sql dba
What are the types of join in sql?
Does truncate table reset auto increment?
What are some predefined exceptions in pl/sql?
what is a constraint? Tell me about its various levels. : Sql dba
What is native sql query?
How much does sql certification cost?
Can we create table in function?
Why use truncate instead of delete?
what is the syntax for using sql_variant_property? : Transact sql
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What are the advantages of sql? Explain
what are the t string functions available in tsql? : Transact sql