Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / kavitha nedigunta
select ename
from emp
where trim(to_char(Hiredate,'day')) ='monday'
| Is This Answer Correct ? | 19 Yes | 5 No |
Post New Answer View All Answers
What is an escape character in sql?
What are the advantages of sql?
What is the difference between row level and statement level trigger?
Is a foreign key always unique?
What is a memo field?
How does index help in query performance?
Explain normalization and what are the advantages of it?
Explain aggregate functions are available there in sql?
Is the primary key an index?
What is Collation Sensitivity ? What are the various type ?
What is clustered index sql?
Can we debug stored procedure?
What is sql character function?
How is data stored on a disk?
What is a file delimiter?