write a query find which rows of a table is updated on 2
days before?
Answer Posted / os reddy
select * from <table name>
where rownum<=2
order by last_updated_date;
OR
select * from emp where to_char(update_column,'dd')=2;
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What is the unique index?
What are different types of queries in sql?
How many types of privileges are available in sql?
Is sql harder than python?
What is the maximum number of columns in sql table?
What is a relationship and what are they?
How do I run a pl sql procedure in sql developer?
what is an index? : Sql dba
What are the main features of cursor?
how do you know the version of your mysql server? : Sql dba
How to fetch values from testtable1 that are not in testtable2 without using not keyword?
What is sql*loader and what is it used for?
Why are sql stored procedures used?
How exception handling is done in advance pl/sql?
What is benefit of creating memory optimized table?