How To Use LIMIT Keyword In SQL?

Forums SQLHow To Use LIMIT Keyword In SQL?
Staff asked 2 years ago

Answers (1)

Add Answer
Nayan Raval Marked As Accepted
Staff answered 2 years ago

You can use the limit keyword for the specific number of records

SELECT salary FROM employees   
ORDER BY salary DESC   
LIMIT 2, 1;

 

you want in the table.

 

Subscribe

Select Categories