Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / ajit nayak
SELECT *
FROM EMP
WHERE TO_CHAR(HIREDATE,'FMDAY') = 'MONDAY';
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the difference between mdf and ndf files?
how to calculate expressions with sql statements? : Sql dba
What is sql key?
what are the limitations of identity column? : Transact sql
What is indexing in sql and its types?
How do you modify a trigger?
What are the two parts of design view?
What is write ahead logging in sql server?
What operators deal with null?
What are packages in pl sql and also explain its advantages?
Why we use joins in sql?
What if we write return in procedure?
What is trigger explain it?
What is left inner join in sql?
What is where clause in sql?