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
What is mutating table error?
What are the different dcl commands in sql?
how to create a new view in mysql? : Sql dba
What does the sign mean in sql?
How can you view the errors encountered in a trigger?
How sql query is executed?
what are the 'mysql' command line options? : Sql dba
What is the difference between union and union all command?
What is the difference between sum and count in sql?
What is Histogram?
Is the primary key an index?
What are tables and fields in the database?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
What is query execution plan in sql?
What is the difference between a subquery and a join?