sql query

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • krsjacob
    New Member
    • Mar 2008
    • 1

    sql query

    I need the query for finding the maximum three salary persons in employee
    table...
  • deepuv04
    Recognized Expert New Member
    • Nov 2007
    • 227

    #2
    Originally posted by krsjacob
    I need the query for finding the maximum three salary persons in employee
    table...
    hi,

    try it...
    [code=sql]

    SELECT TOP 3 * FROM Table_Name ORDER BY Salary DESC
    [/code]
    thanks

    Comment

    Working...