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
how to select first 5 records from a table? : Sql dba
What are the key differences between SQL and PL SQL?
What will you get by the cursor attribute sql%notfound?
How many types of cursors supported in pl/sql?
how can we take a backup of a mysql table and how can we restore it. ? : Sql dba
how to enter binary numbers in sql statements? : Sql dba
What does desc stand for?
What is sql and how does it work?
What is the command used to fetch the first 5 characters of a string?
Can %notfound return null after a fetch?
What is a null value?
What are the two types of exceptions.
What is natural join in sql?
What does count (*) do in sql?
How do I view a view in sql?