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
Can you selectively load only those records that you need? : aql loader
Explain lock escalation? : Transact sql
what is top in tsql? : Transact sql
Explain what is table in a database?
Can we use delete in merge statement?
How do you declare a variable in pl sql?
Mention what is the function that is used to transfer a pl/sql table log to a database table?
Which is faster count (*) or count 1?
What are the types of operators available in sql?
What is procedure explain with example?
What is a sql*loader control file?
define data blocks ? : Sql dba
What is nvarchar in sql?
How many postgresql users are there, worldwide?
What does closing a cursor do?