Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / chaitu
select ename,to_char(hiredate,'Day') from emp
where trim( to_char(hiredate,'Day'))='Monday'
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What does count (*) do in sql?
What are sql commands?
Why is %isopen always false for an implicit cursor?
What does desc stand for?
What are pl/sql packages?
How does sql developer connect to oracle database?
What is sql injection owasp?
What is the difference between partition and index?
Can we insert data into materialized view?
What are the rules to be applied to nulls whilst doing comparisons?
How do you declare a constant?
Explain sql data types?
what are set operators in sql? : Sql dba
tell me about various levels of constraint. : Sql dba
How insert into statements in sql?