Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a query to find the name of employees those who have
joined on Monday.(based on column hire_date)

Answer Posted / arun kumar reddy

select * from
(select emp.*,to_char(to_date(hiredate),'day') as join_day from emp)
where join_day like'mo%';

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is update query?

1030


What are pl/sql cursors?

1098


Differentiate between % rowtype and type record.

1389


Why are cursors used?

1173


What is cursor explain with example?

1027


Is stored procedure faster than query?

1018


Mention what does the hierarchical profiler does?

1136


what is a foreign key ? : Sql dba

1113


What is a join?

1104


What are the two types of periodical indexes?

987


Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?

1269


Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?

3619


What is t-sql? : Transact sql

1039


Mention what is the function that is used to transfer a pl/sql table log to a database table?

1029


What is sql rowcount?

1068