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 / ramya p
You could also use this query:
select * from <table_name>
where mod(column,2)=0;
| Is This Answer Correct ? | 1 Yes | 11 No |
Post New Answer View All Answers
what are the differences among rownum, rank and dense_rank? : Sql dba
What are the different operators available in sql?
What does select count (*) mean in sql?
What are sql triggers used for?
Can triggers stop a dml statement from executing on a table?
Explain what is sql*plus?
Why do we use joins?
how to calculate expressions with sql statements? : Sql dba
What is sql key?
How to rename a column in the output of sql query?
Is sql a microsoft product?
What is form and report?
What does joining a thread mean?
What kind of join is join?
Is sql considered coding?