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
how to analyze tables with 'mysqlcheck'? : Sql dba
Can sql function call stored procedure?
What is the advantage of index in sql?
What is primary key in db?
What is varchar used for?
Can we create a trigger on view?
what is a constraint? : Sql dba
What is set serveroutput on in pl sql?
What is meant by cursor in sql?
How do you delete a table?
What are local and global Indexes and where they are useful.
How do I find duplicates in a single column in sql?
What is a subquery in sql?
Is time a data type in sql?
What is pl sql record in oracle?