Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / kavitha nedigunta
select ename
from emp
where trim(to_char(Hiredate,'day')) ='monday'
| Is This Answer Correct ? | 19 Yes | 5 No |
Post New Answer View All Answers
How does postgresql compare to oracle/db2/ms sql server/informix?
How to display Row Number with Records in Oracle SQL Plus?
Explain the purpose of %type and %rowtype data types with the example?
Are sql database names case sensitive?
What can I use instead of union in sql?
Why use truncate instead of delete?
What is the source code of a program?
Explain how can you save or place your msg in a table?
how to rename an existing column in a table? : Sql dba
How does sql*loader handles newline characters in a record? : aql loader
What is schema in sql?
What is view explain with example?
How delete all records from table in sql?
how many columns can be used for creating index? : Sql dba
explain the difference between delete , truncate and drop commands? : Sql dba