write a query find which rows of a table is updated on 2
days before?
Answer Posted / ajit nayak
SELECT * FROM USER_TAB_MODIFICATIONS
WHERE TO_DATE(TIMESTAMP,'DD-MON-YYYY') = TO_DATE(SYSDATE - 2,'DD-MON-YYYY');
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is cursor and its types?
What is record type in pl sql?
What does where 1/2 mean in sql?
Which command is used to delete a trigger?
What is cursor in pl sql?
What are analytical functions in sql?
How exception handling is done in advance pl/sql?
How does cross join work?
What is meaning of <> in sql?
What is bulk collect in pl sql?
What is example of database?
What are the indexing methods?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)
What is over () in sql?
Is id a reserved word in sql?