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 triggers and its types?
What is a sql instance vs database?
What is the most important ddl statements in sql are?
What are sql commands?
What is form and report?
What is difference between function and trigger?
What is the difference between join and natural join?
Which is faster union or join?
What are field types?
What are the advantages of normalization?
What is trigger and types?
What are the uses of sysdate and user keywords?
What is snowflake sql?
what is try_catch block in procedure
What is sqlite format?