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 use of function in sql?
What is sql partition function?
how to shutdown mysql server? : Sql dba
What are dml commands?
Explain architecture of sql server notification services?
How do I edit a trigger in sql developer?
What is view? Can we update view
Can we insert data into materialized view?
What are types of indexes in sql?
What are basic techniques of indexing?
What is an escape character in sql?
What is self-join and what is the requirement of self-join?
explain advantages of myisam over innodb? : Sql dba
How do I find duplicates in sql?
What is the most important ddl statements in sql are?