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
How to convert comma separated string to array in pl/sql?
What is the benefit of foreign key?
What are different types of indexes?
What is use of trigger?
Why is pl sql used?
When is the update_statistics command used?
What is varchar example?
How do I debug a stored procedure?
How do I count duplicates in sql?
what are the maximum number of rows that can be constructed by inserting rows directly in value list? : Transact sql
what is uncommittable transactions? : Transact sql
How do I view tables in mysql?
What are % type and % rowtype?
What is the difference between null value, zero, and blank space?
what are the join types in tsql? : Transact sql