Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / ajeet
select last_name,to_char(hire_date,'day,mm,yyyy')
from employees
where trim(to_char(Hire_date,'day')) ='monday'
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
How many tables can a sql database have?
What is a subquery in sql?
Why is pl sql needed?
Can we use the cursor's to create the collection in PL/SQL?
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
What is the use of sql trace?
What does trigger mean in slang?
What is numeric function sql?
how to fetch common records from two tables? : Sql dba
What are the disadvantages of not performing database normalization?
tell us something about heap tables. : Sql dba
What is dml and ddl?
Explain what is dbms?
explain access control lists. : Sql dba
What is cross join sql?