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 does cursor do in sql?
What are the different dml commands in sql?
How many types of relationship are there?
What is clause?
How to avoid using cursors? What to use instead of cursor and in what cases to do so?
What is dml statement?
Does mysql support pl sql?
How do you update sql?
What is the purpose of normalization?
What is an escape character in sql?
Can we join 3 tables in sql?
What are %type and %rowtype for?
What is difference between sql and excel?
What is Materialized View? In What Scenario we Use Materialized View?
What are % type and % rowtype?