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 an index? What are the types of indexes? How many clustered indexes can be created on a table?
What is union and union all keyword in sql?
what is a foreign key ? : Sql dba
Should I use mbr or gpt?
What is user in sql?
How do you create a db file?
What is assignment operator in pl sql?
How do you update a sql procedure?
Can we call procedure in select statement?
What is cascade in sql?
What is difference between inner join and self join?
What is a natural join sql?
What does (+) mean in sql joins?
What is rowtype?
What is use of package in pl sql?