Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / kiran kumar
SELECT * FROM EMP
where TRIM(TO_CHAR(TRUNC(HIREDATE),'DAY'))='SUNDAY'
| Is This Answer Correct ? | 23 Yes | 7 No |
Answer / kavitha nedigunta
select ename
from emp
where trim(to_char(Hiredate,'day')) ='monday'
| Is This Answer Correct ? | 19 Yes | 5 No |
Answer / ajit nayak
SELECT *
FROM EMP
WHERE TO_CHAR(HIREDATE,'FMDAY') = 'MONDAY';
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / 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 |
Answer / ajeet
select last_name,to_char(hire_date,'day,mm,yyyy')
from employees
where trim(to_char(Hire_date,'day')) ='monday'
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / mahendar reddy
SELECT ENAME FROM EMP WHERE TO_CHAR(TO_DATE(HIREDATE),'D')='2';
IT fetch the employee name who joined on monday
Here
1=sunday
2=monday
--
---
--
--
--etc
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / chaitu
select ename,to_char(hiredate,'Day') from emp
where trim( to_char(hiredate,'Day'))='Monday'
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / emmanuel
Select * from emp
Where to_char(TO_DATE(hire_date),'day')='monday';
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / venkat
Select first_name,Last_name
from employees
where To_date('HIREDATE','D')=2;
1-SUNDAY
2-MONDAY
----
7-SATURDAY
The advantage of the above query even don't know about the
format of day of the week We get the output.
Monday,
MON
MONDAY
ETC
| Is This Answer Correct ? | 6 Yes | 7 No |
write an sql query to find names of employee start with 'a'? : Sql dba
What is a bitmap index?
4 Answers Choice Solutions, Infosys,
How can I get the number of records affected by a stored procedure?
What is the difference between an inner join and an outer join?
What are the different datatypes available in PL/SQL?
What is Referential Integrity?
What is clustered, non-clustured and unique index. How many indexes can be created on a table ?
in oracle 10g sw after compiling procedure how to pass parameter values ,if we (v_empid out number)how to give empid after successful compilation program.This site exact suitable for 10g with respect to question & answer same format , im trying sql browser & sql command prompt using exec procedure name & respective parameters.
How to call shell script from pl sql procedure?
What is break?
How to raise user-defined exception with custom sqlerrm ?
How do I count rows in sql query?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)