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
Does db2 use sql?
What is trigger in sql?
Does mysql_real_escape_string prevent sql injection?
How do I edit a stored procedure?
What is int identity in sql?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
Can I create table without primary key?
Is left join same as inner join?
What is coalesce sql?
How many types of relationship are there?
How is a PL/SQL code compiled?
Explain sql data types?
What is before trigger?
What are the query optimization techniques?
Why is %isopen always false for an implicit cursor?