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 / krishna
This Query shall do the trick.
SQL> desc a;
Name Null? Type
------------------------------- -------- ----
A NUMBER(2)
SQL> select * from a;
A
---------
1
5
7
SQL> select x from (
2 select rownum x from all_tables ) a, (select max(a)
mx, min(a) mi from a) b
3 where a.x between b.mi and b.mx
4 and a.x not in (select * from a)
5 /
X
---------
2
3
4
6
SQL>
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is the difference between join and natural join?
How many sql statements are used? Define them.
How do I use google cloud in sql?
What is dialect in sql?
Why triggers are used?
What is raid? How does it help storage of databases?
How do I find duplicates in two columns?
What are crud methods?
What is the difference between sql and t sql?
how to install mysql? : Sql dba
What is indexing oracle sql?
Is postgresql a nosql database?
Is sql developer case sensitive?
Explain the significance of the & and && operators in pl sql.
what is a field in a database ? : Sql dba