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

Answer Posted / arun kumar reddy

select * from
(select emp.*,to_char(to_date(hiredate),'day') as join_day from emp)
where join_day like'mo%';

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a recursive join sql?

807


Explain the steps needed to create the scheduled job?

750


How can you fetch common records from two tables?

774


Write a query to display the current date in sql?

737


What if we write return in procedure?

974






What does sql stand for?

704


What is a system versioned table?

702


What are the three pl sql block types?

724


How can you create an empty table from an existing table?

799


Why we use joins in sql?

723


what is the difference difference between procedure and packages

9650


How to change the order of columns in Oracle SQL Plus ?

792


Can primary key be changed?

666


How to create your own reports in sql developer?

729


What are the advantages of pl sql over sql?

733