I want to display the employees who have joined in last two
months. (It should be executed randomly means If I execute
the query in March it should display Jan and Feb joined
employees. Same query if i execute in Feb, 2007 it should
display dec, 2006 and jan 2007 joined employees.
Answer Posted / venu
select * FROM(SELECT ENAME, Abs(to_date('&DATE' ,'dd/mm/yy')- HIREDATE) AS DATES FRom EMP) where dates<60;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are the sql commands?
Are there any features that are decommissioned in 11g that are not present in 11g?
Will truncate release space?
What is the difference between having and a where in sql?
What is sql select statement?
What is cold data?
Suppose a student column has two columns, name and marks. How to get name and marks of the top three students.
What is sql profiler in oracle?
What are the three pl sql block types?
Can pl sql procedure have a return statement?
How to write pl sql program in mysql command prompt?
What is the primary use of normalization?
Does sql use python?
Which are the different case manipulation functions in sql?
What is scalar data type in pl sql?