Write a query to get all details of employee who has maximum
salary from employee table
Answer Posted / vj
with cte as
(
select row_number() over (order by employee_salary desc)
maxSal ,* from Employee_Test)
select * from cte where maxSal=1
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain what role entity and relationship play in an ER diagram.
How to download microsoft sql server 2005 express edition?
What security features are available for stored procedure?
What is the difference between count () and rowcount ()?
Does group by sort data?
Is truncate a dml command?
Why should one not prefix user stored procedures with ‘sp_’?
Where is my database stored on the hard disk in ms sql server?
Does sql server 2000 clustering support load balancing?
what is spatial nonclustered index
Tell me what are the essential components of sql server service broker?
what are the important architecture components of SSRS?
What is bcp? When does it use?
How to change the data type of an existing column with "alter table" statements in ms sql server?
What is sql server locking?