MySQL Limit Offset

SELECT * FROM  users 
LIMIT 10 OFFSET 50;
# just expanding Friendly Hawk's comment
ShanK