Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / arun kumar reddy
select * from
(select emp.*,to_char(to_date(hiredate),'day') as join_day from emp)
where join_day like'mo%';
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How can we find duplicate records in a table?
What is the difference between joins?
What is the most common sql injection tool?
What is full join?
What is crud sql?
What is a left inner join?
What is form and report?
What has stored procedures in sql?
how to include character strings in sql statements? : Sql dba
How to order siblings in oracle hierarchy queries?
Why triggers are used?
What is a recursive join sql?
What is difference between pl and sql?
What is full form of rtm?
What is join view in sql?