Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / prasant
SELECT FIRST_NAME,LAST_NAME FROM employees
where TRIM(TO_CHAR(TO_DATE(HIRE_DATE),'DAY'))='MONDAY';
if any issue,contact me.
| Is This Answer Correct ? | 48 Yes | 8 No |
Post New Answer View All Answers
What is the difference between microsoft access and sql server?
How do you update a table in sql?
What is the source code of a program?
Is sql developer case sensitive?
Can we group by two columns in sql?
How to fetch alternate records from a table?
What is %s in sql?
What is the use of desc in sql?
How do you update a value in sql?
What is posting?
What is flag in sql?
When is a declare statement required?
what are the advantages and disadvantages of views in a database? : Sql dba
Explain autonomous transaction.
Is a table valued function object?