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 get all details of employee who has maximum
salary from employee table

Answer Posted / sureshramsing

select * from emp where (empno,1)=(select * from(select empno,row_number() over(order by sal desc) rn from emp) where rn=1);

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are different types of views?

989


Call by value and call by reference in procedure and function, with NOCOPY.

1351


How to get a list of all tables with "sys.tables" view in ms sql server?

1085


How do you migrate data from mssql server to azure?

167


Explain the various types of concurrency problem. I.e. Lost or buried updates, uncommitted dependency, inconsistent analysis, phantom read?

997


Can I run multiple instances of sql server 2000 at the same time on one computer?

1122


What are extended events in sql server?

1009


How can I know what locks are running on which resource?

998


Can we do dml on views?

1018


How to check if a table is being used in sql server?

1010


Define Unique Key?

1069


How to create a view and a stored procedure in ms sql server using "create view/procedure" statements?

1074


What is the data type of time?

1019


role of sql sever 2005 in database rather than any other database

1992


Every night you run a full backup after every 3 three hours you make a differential backup every hour you make an incremental backup in a worst-case scenario, how much work you can lose?

1004