Cita: La cláusula LIMIT puede usarse para restringir el número de registros retornados por el comando SELECT. LIMIT tiene uno o dos argumentos numéricos, que deben ser enteros positivos (incluyendo cero).
Con dos argumentos, el primer argumento especifica el desplazamiento del primer registro a retornar. El desplazamiento del registro inicial es 0 (no 1):
Por compatibilidad con PostgreSQL, MySQL también soporta la sintaxis LIMIT
row_count OFFSET
offset.
Si es posible si usas MySQL 5.5.6 o superior:
Cita: The LIMIT clause can be used to constrain the number of rows returned by the
SELECT statement. LIMIT takes one or two numeric arguments, which must both be nonnegative integer constants, with these exceptions:
- Within prepared statements, LIMIT parameters can be specified using ? placeholder markers.
- Within stored programs, LIMIT parameters can be specified using integer-valued routine parameters or local variables as of MySQL 5.5.6.
SI el server es anterior, no funcionará.
Son cambios introducidos hace poco, por eso no funcionarán bien en todos los hosting, por ejemplo.