Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / chaitu
select ename,to_char(hiredate,'Day') from emp
where trim( to_char(hiredate,'Day'))='Monday'
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why coalesce is used in sql?
Explain about various levels of constraint.
What is number function in sql?
What are the different set operators available in sql?
Is sql the best database?
What does select count (*) mean in sql?
What are pl/sql cursor exceptions?
What is the difference between sum and count in sql?
How do you add a column to a table?
What is the difference between join and natural join?
What are pl sql procedures?
What is sql select statement?
How do you optimize a stored procedure query?
Define union, minus, union all, intersect ?
Mention what is the use of function "module procedure" in pl/sql?