Write a query to find the employees from EMP table those who
have joined in Monday. (there is a column as hiredate which is
a date column i.e values are like 03-DEC-81)
Answer Posted / siva
Select* from emp where to_char(hiredate,'dy')='mon';
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a subquery in sql?
How does left join work in sql?
Explain what is table in a database?
What is a common use of group by in sql?
What are the two types of exceptions in pl/sql?
What is clause?
Explain how to use transactions efficiently : transact sql
How do you drop a trigger?
What is benefit of creating memory optimized table?
What is the example of procedure?
Explain the savepoint statement.
Can we use loop in sql?
How many commands are there in sql?
What is cursor in pl sql?
How does cross join work in sql?