Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / kiran kumar
SELECT * FROM EMP
where TRIM(TO_CHAR(TRUNC(HIREDATE),'DAY'))='SUNDAY'
| Is This Answer Correct ? | 23 Yes | 7 No |
Post New Answer View All Answers
How to run pl/sql statements in sql*plus?
Can we create view in stored procedure?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
How can you select unique records from a table?
what are numeric data types? : Sql dba
How do I know if I have sql express or standard?
What are the types pl/sql code blocks?
What is the main difference between sql and pl/sql?
How insert into statements in sql?
What is sql analyzer?
what is online transaction processing (oltp)? : Sql dba
What is dense_rank?
what does myisamchk do? : Sql dba
Explain correlated query work?
Which is better join or subquery?