Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / mahendar reddy
SELECT ENAME FROM EMP WHERE TO_CHAR(TO_DATE(HIREDATE),'D')='2';
IT fetch the employee name who joined on monday
Here
1=sunday
2=monday
--
---
--
--
--etc
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is rownum in sql?
What are stored procedures in mysql?
What is pl sql commands?
is mysql query is case sensitive? : Sql dba
Why is stored procedure faster than query?
How do rank () and dense_rank () differ?
What is raid? How does it help storage of databases?
What are the different types of triggers?
How is data stored in sql?
Is sql a backend?
What is function and procedure in pl sql?
how to include comments in sql statements? : Sql dba
How is data stored on a disk?
what is data integrity? : Sql dba
what is 'mysqld'? : Sql dba