Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / nitin umale
SELECT last_name,TO_CHAR(hire_date, 'Day,dd-Mon-yy')Hire_date
FROM employees
WHERE UPPER(TRIM(TO_CHAR(hire_date, 'day')))='MONDAY';
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are pl/sql packages?
How to generate a salary slip like jan 1000 1000 feb 1000 2000 ... dec 1000 12000
Suppose a student column has two columns, name and marks. How to get name and marks of the top three students.
How do I make my sql query run faster?
What is the difference between python and sql?
can sql servers linked to other servers like oracle? : Sql dba
Is record in oracle pl sql?
Does mysql_real_escape_string prevent sql injection?
What are the types of triggers in sql?
What is the difference between union and union all command?
What is use of term?
How do you write an index?
Can we enter data in a table in design view?
What is the primary key?
What is dense_rank?