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


Please Help Members By Posting Answers For Below Questions

What are the types of views in sql?

533


how can we optimize or increase the speed of a mysql select query? : Sql dba

501


Can %notfound return null after a fetch?

581


Why left join is used in sql?

514


which types of join is used in sql widely? : Sql dba

535






How many rows can sqlite handle?

577


what are all the different normalizations? : Sql dba

503


What is blind sql injection?

566


Define sql delete statement.

553


explain the options of myisamchk to improve the performance of a table. : Sql dba

541


Show code of a cursor for loop.

576


is it possible to pass an object or table to a procedure as an argument?

563


how can we know the count/number of elements of an array? : Sql dba

566


C. Normalize the following data up to the 3rd Normal form. Create the tables and insert the data given. Emp_ID Name Dept_Name Salary Course_Title Date_Completed 100 Adam Marketing 48,000 SPSS 6/19/2008 Surveys 10/7/2008 140 Bob Accounting 52,000 Tax Acc 12/8/2008 110 Cathy IT SQL Server 1/12/2008 C# 4/22/2008 190 Dan Finance 150 Emily Marketing 55,000 SPSS 6/16/2008 42,000 Analysis 8/12/2008 Queries 1. Find all Names who have completed the SPSS Course. 2. Find employee with max salary. 3. Find employee with 2nd max salary. 4. Find all employees in Dept “Marketing”. 5. Find all the employees who have taken more than 2 courses. 6. Find all the employees who have completed the courses before month of September.

2167


What is the use of stored procedures?

513