SELECT TOP 5 WITH TIES EmpNumber,EmpName FROM Employee Order By EmpNumber DESC
This above query return more than five result, What is the use of \"Wi
With my understanding of WITH TIES clause, if you want to [duplicate values], which the column specified in the Order By.