Write a query to find the employees from EMP table those who
have joined in Monday. (there is a column as hiredate which is
a date column i.e values are like 03-DEC-81)
Answer Posted / jprakash025
SQL> select ename,hiredate from emp
2 where
3 to_char(hiredate,'day') like '%sunday%';
ENAME HIREDATE
---------- ---------
WARD 22-FEB-81
SCOTT 19-APR-87
i dont hv monday data, thats y i m using sunday
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
what is dbms? : Sql dba
Is there a way to automate sql execution from the command-line, batch job or shell script?
How do I run a pl sql program?
What is the advantage of nosql?
What is cascade in sql?
what are the different functions in sorting an array? : Sql dba
When can we use the where clause and the having clause?
What is clause?
What is sql injection vulnerability?
What is triggering circuit?
What are synonyms in sql?
How do you modify a column in sql?
what is bcp? When does it used? : Sql dba
Show the cursor attributes of pl/sql.
What are the features of pl sql?