Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / nitin umale
SELECT last_name,TO_CHAR(hire_date, 'Day,dd-Mon-yy')Hire_date
FROM employees
WHERE UPPER(TRIM(TO_CHAR(hire_date, 'day')))='MONDAY';
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How much does sqlite cost?
what is 'mysqladmin' in mysql? : Sql dba
Explain isolation levels. : Transact sql
How to write a query to show the details of a student from students table whose
How does cross join work in sql?
Is sql considered coding?
Do triggers have restrictions on the usage of large datatypes, such as long and long raw?
How to get unique records from a table?
what is blob? : Sql dba
What is the use of desc in sql?
What is varchar used for?
What is an escape character in sql?
Why is normalization important?
What is sqlca in db2?
How do sql databases work?