Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / ajeet
select last_name,to_char(hire_date,'day,mm,yyyy')
from employees
where trim(to_char(Hire_date,'day')) ='monday'
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Can you inner join the same table?
Enlist some predefined exceptions?
explain the difference between myisam static and myisam dynamic. : Sql dba
How many commands are there in sql?
What is sql query optimization?
Is null operator in sql?
what are myisam tables? : Sql dba
What is bulk collect in pl sql?
how mysql optimizes distinct? : Sql dba
How do rank () and dense_rank () differ?
Is a foreign key always unique?
What is the use of stored procedures?
What is indexing in sql and its types?
What is sql stand for?
What is rownum?