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


Please Help Members By Posting Answers For Below Questions

What is query execution plan in sql?

563


What are different functions in sql?

515


tell us something about heap tables. : Sql dba

596


What is the difference between microsoft access and sql?

496


Why sql query is slow?

576






Is and as keyword in pl sql?

511


What is sqlerrd?

524


how to get a list of indexes of an existing table? : Sql dba

514


What are the different ways to optimize a sql query?

484


What is the maximum rows in csv?

485


What is an index? What are the types of indexes? How many clustered indexes can be created on a table?

551


how to enter numeric values as hex numbers? : Sql dba

565


What is sqlite format?

628


Is sqlite good enough for production?

531


how to use case expression? : Sql dba

549