leetcode_177
Write a SQL query to get the nth highest salary from the Employee table.
Solutions
LIMIT
LIMIT b, a : skip b records and fetch a records.
LIMIT a OFFSET b : skip b records and fetch a records.
Or
Last updated
Was this helpful?
Write a SQL query to get the nth highest salary from the Employee table.
LIMIT
LIMIT b, a : skip b records and fetch a records.
LIMIT a OFFSET b : skip b records and fetch a records.
Or
Last updated
Was this helpful?