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
How to rename a column in the output of sql query?
How can check sql version from command line?
What is a pl/sql block?
How do we use distinct statement? What is its use?
How do I count duplicates in sql?
How do I enable sql encryption?
Which kind of parameters cannot have a default value in pl sql?
Can you upgrade sql express to full sql?
What are the packages in pl sql?
What are the different types of functions in sql?
what is self join and what is the requirement of self join? : Sql dba
Does inner join remove duplicates?
What is the file extension for sql database?
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
How can you create an empty table from an existing table?