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
Define union, minus, union all, intersect ?
Is delete faster than truncate?
how can we optimize or increase the speed of a mysql select query? : Sql dba
How to start the command-line sql*plus?
Can we debug stored procedure?
What are the steps for performance tuning.
What is trigger explain it?
what are the disadvantages of mysql? : Sql dba
How many types of triggers exist in pl/sql?
How do you clear the screen in sql?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
define sql insert statement ? : Sql dba
What is the meaning of disabling a trigger?
what is an extent ? : Sql dba
What is composite data type in pl sql?