Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / prasant
SELECT FIRST_NAME,LAST_NAME FROM employees
where TRIM(TO_CHAR(TO_DATE(HIRE_DATE),'DAY'))='MONDAY';
if any issue,contact me.
Is This Answer Correct ? | 48 Yes | 8 No |
Post New Answer View All Answers
which types of join is used in sql widely? : Sql dba
What are the types of dbms?
What is the use of non clustered index?
How to combine two stored procedures in sql?
Explain ddl statements in pl/sql?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
What is sql character function?
What does inner join mean?
what is the functionality of the function htmlentities? : Sql dba
What is foreign key sql?
What is $$ in sql?
how to include character strings in sql statements? : Sql dba
What is the mutating table and constraining table?
Which is faster union or join?
What is a temporal table?