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

Answer Posted / emmanuel

Select * from emp
Where to_char(TO_DATE(hire_date),'day')='monday';

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the basic form of sql query?

503


Is sql injection illegal?

612


Is a secondary key the same as a foreign key?

500


what is a unique key ? : Sql dba

556


what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba

682






Define union, minus, union all, intersect ?

560


What is spool?

606


Do we need commit after truncate?

623


How does postgresql compare to mysql?

589


What's the difference between inner join and left join?

525


Are subqueries faster than joins?

581


Explain the purpose of %type and %rowtype data types?

513


What are sql indexes?

555


What is the difference between delete, truncate and drop command?

559


How to fetch alternate records from a table?

699