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
Can we write dml inside a function in sql server?
what are date and time intervals? : Sql dba
what is heap table? : Sql dba
Why trigger is used in sql?
How do I truncate a sql log file?
What is an implicit commit?
what is a control file ? : Sql dba
What is a loop in sql?
What are expressions?
What is delimiter sql?
What do you mean by stored procedures? How do we use it?
Which is better trigger or stored procedure?
What is interval partition?
What are sql injection vulnerabilities?
What is pl sql architecture?