Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / priya
select firstname,lastname from hire_date where to_upper
(to_char(hire_date, 'mon')) = 'MON' ;
since hire_date is of date type converting the date to
again of date type is of no use.Need to convert it to
string type and select the month.
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
How do I run sql?
Is a table valued function object?
What is sql query limit?
What is left inner join in sql?
What is query optimization in sql?
What is the use of sqldataadapter?
Why stored procedure is faster than query?
What is the process of copying data from table a to table b?
Can I join the same table twice?
Can we group by two columns in sql?
What is a constraint?
1) Synonyms 2) Co-related Subquery 3) Different Jobs in Plsql 4) Explain Plan 5) Wrap 6) Query Optimization Technique 7) Bulk Collect 8) Types of index 9) IF primary key is created then the index created ? 10) Foreign Key 11) Exception Handling 12) Difference Between Delete and Trunc 13) Procedure Overloading 14) Grant Revoke 15) Procedure Argument types. 16) Functions. 17) Joins
how is myisam table stored? : Sql dba
What pl/sql package consists of?
What packages(if any) has oracle provided for use by developers?