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
How do I view a procedure in sql?
what is primary key? : Sql dba
Is nosql relational?
How does sql*loader handles newline characters in a record? : aql loader
What is the difference between nested table and varray?
how many sql ddl commands are supported by 'mysql'? : Sql dba
Is join an inner join?
What is %type in pl sql?
Why truncate is used in sql?
how to enter characters as hex numbers? : Sql dba
How to change a value of the field ‘salary’ as 7500 for an employee_name ‘john’ in a table employee_details?
What does count (*) do in sql?
How can check sql version from command line?
Define select, insert, create, delete, update, drop keywords
what is auto increment? : Sql dba