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 / l meher
SQL> select ename,hiredate from emp where trim(to_char(trunc(hiredate),'DAY')) = 'MONDAY';
ENAME HIREDATE
---------- ---------
MARTIN 28-SEP-81
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What is the use of triggers?
How can you load microsoft excel data into oracle? : aql loader
Can a table contain multiple primary key’s?
What are inner and outer joins examples of both?
Sql technical questions
Can there be more than one function with a similar name in a pl/sql block?
How to create your own reports in sql developer?
In what condition is it good to disable a trigger?
What is the difference between microsoft access and sql server?
what is single byte over head in oracle..?
Is postgresql a server?
How do you optimize a query?
Why is pl sql used?
What is rollback?
What are the rules to be applied to nulls whilst doing comparisons?