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
Explain the purpose of %type and %rowtype data types with the example?
Are subqueries better than joins?
how to create a new view in mysql? : Sql dba
Explain clause in sql?
What is bind variable in pl sql?
Does pl sql work in mysql?
Why use truncate instead of delete?
What are the advantages of pl sql?
How delete all data from all tables in sql?
What is pl sql quora?
What is the purpose of a sql?
What is date functions?
Can we create table in function?
How is a process of pl/sql compiled?
Can you select everything, but 1 or 2 fields, without writer's cramp?