Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answer Posted / prasant
SELECT FIRST_NAME,LAST_NAME FROM employees
where TRIM(TO_CHAR(TO_DATE(HIRE_DATE),'DAY'))='MONDAY';
if any issue,contact me.
| Is This Answer Correct ? | 48 Yes | 8 No |
Post New Answer View All Answers
How do temporal tables work?
What is the difference between functions, procedures, and packages in pl/sql?
Explain two easy sql optimizations.
In a distributed database system, can we execute two queries simultaneously?
Is full outer join same as cross join?
what is the difference between delete and truncate statement in sql? : Sql dba
When to use inner join and left join?
What is data types in sql?
Can we insert data into view?
What is scalar function?
What will you get by the cursor attribute sql%rowcount?
Does pdo prevent sql injection?
If a cursor is open, how can we find in a pl/sql block?
Is mariadb nosql?
What is a table in a database?