Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)

Answer Posted / ajit nayak

SELECT *
FROM EMP
WHERE TO_CHAR(HIREDATE,'FMDAY') = 'MONDAY';

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is commit? : Sql dba

819


Which is better join or subquery?

793


What is a temporal data type?

775


How do you use a while loop in pl sql?

723


What is auto increment in sql?

825






What is right join sql?

711


What is a native sql query?

701


What is pivot table in sql?

741


What is time based sql injection?

690


What can you do with pl sql?

773


What is sql mysql pl sql oracle?

784


Does truncate table reset auto increment?

722


What is sqlite used for?

701


what's the difference between a primary key and a unique key? : Sql dba

704


how to convert dates to character strings? : Sql dba

735