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)

Answer Posted / pramod

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

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the advantages and disadvantages of stored procedure?

642


What is sql data?

546


What is normalization in a database?

610


What is a Mapplet?

640


Is sqlite free?

534






Explain spool.

682


What is cartesian join in sql?

557


List the various privileges that a user can grant to another user?

574


Why do we use view in sql?

531


What is right join in sql?

549


What is the difference between rollback and rollback to statements?

579


Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?

596


What is constant in pl sql?

515


What is sql query limit?

506


Is join an inner join?

531