Write a query to find the employees from EMP table those who
have joined in Monday. (there is a column as hiredate which is
a date column i.e values are like 03-DEC-81)

Answers were Sorted based on User's Feedback



Write a query to find the employees from EMP table those who have joined in Monday. (there is a co..

Answer / l meher

SQL> select ename,hiredate from emp where trim(to_char(trunc(hiredate),'DAY')) = 'MONDAY';

ENAME HIREDATE
---------- ---------
MARTIN 28-SEP-81

Is This Answer Correct ?    10 Yes 1 No

Write a query to find the employees from EMP table those who have joined in Monday. (there is a co..

Answer / jprakash025

SQL> select ename,hiredate from emp
2 where
3 to_char(hiredate,'day') like '%sunday%';

ENAME HIREDATE
---------- ---------
WARD 22-FEB-81
SCOTT 19-APR-87

i dont hv monday data, thats y i m using sunday

Is This Answer Correct ?    9 Yes 3 No

Write a query to find the employees from EMP table those who have joined in Monday. (there is a co..

Answer / pramod

select *
from tbl_employees
where DATENAME(DW,hiredate)='Monday' order by hiredate

Is This Answer Correct ?    1 Yes 0 No

Write a query to find the employees from EMP table those who have joined in Monday. (there is a co..

Answer / siva

Select* from emp where to_char(hiredate,'dy')='mon';

Is This Answer Correct ?    0 Yes 0 No

Write a query to find the employees from EMP table those who have joined in Monday. (there is a co..

Answer / masuduz zaman

SELECT * FROM EMP
WHERE (DATEPART(dw, HIREDATE) + @@DATEFIRST) % 7 = 2

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More SQL PLSQL Interview Questions

What is an alias command?

0 Answers  


Does sql require a server?

0 Answers  


What are the different parts of a package?

0 Answers  


Is sql procedural language?

0 Answers  


Can sql developer connect to db2?

0 Answers  






there is A table and B table in A table there 5 rows and in b table there are 2 rows i am firing query select * from a,b what will be the output?

7 Answers   Cognizant,


What are database links used for?

0 Answers  


What does select * from mean in sql?

0 Answers  


Why do we use procedures in sql?

0 Answers  


What are the advantages of sql?

0 Answers  


what is overloading procedure or overloading function ?

3 Answers   Genpact,


If a View on a single base table is manipulated will the changes be reflected on the base table?

5 Answers  


Categories