I think LIMIT 5, 22
will give you the result rows: 6-27
LIMIT 0, 10 will give 1-10
LIMIT 10, 10 will give 11-20
LIMIT 20, 10 will give 21-30
This is useful when displaying page 1, 2, 3 with 10 records per page
Of course you may use variables in query with LIMIT
$start = 20;
$num = 10;
"LIMIT $start, $num" ... will give 21-30