write query for fourth maximum salary from employee table
Answer Posted / elumalai.k
select salary from employee aa
where 4=(select count(*)from employee bb
where aa.salary<=bb.salary)
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
When you should use a low fill factor?
Explain an incremental backup?
What is the maximum rows in sql server table?
Types of Authentications in Sql Server? How user gets authenticated through windows authentication?
how do you test proper tcp/ip configuration windows machine? : Sql server database administration
How to use copy and concatenate commands in SQL?
How many levels of sp nesting are possible?
what is database replicaion? : Sql server database administration
What is an indice?
Which operator do you use to return all of the rows from one query except rows are returned in a second query?
Mention the command used to rename the database.
hi, the following are the outputs of sp_spaceused and sp_tempdbspace sp_spaceused ------------ database size unallocated size tempdb 77752.95 MB 28026.99 MB sp_tempdbspace ------------- database size spaceused tempdb 77752.945312 1.007812 the unused space in sp_spaceused is nearly 28 Gb and in sp_tempdbspace is nearly 76 Gb cany any one explain about this output and why its giving different results.
What is the difference between push and pull subscription? : sql server replication
What is a collation?
How to get the definition of a user defined function back?