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
What is having clause in sql?
Explain the difference between cursor declared in procedures and cursors declared in the package specification?
What are inbuilt functions in sql?
Is the primary key an index?
How do sql triggers work?
How do I create a sql script?
what tools available for managing mysql server? : Sql dba
What is error ora-12154: tns:could not resolve the connect identifier specified?
What is the difference between instead of trigger and after trigger?
What is execution plan in sql?
How do you exit in sql?
how many sql ddl commands are supported by 'mysql'? : Sql dba
How do I send sql query results to excel?
Does varchar need length?
How to rename a table?