Ver original// Esto mostrata desde tu registro 2 hasta el 15SELECT * FROM table LIMIT 2,15; //Esto mostrata un limite de 10 registrosSELECT * FROM table LIMIT 10; //Parecida al anterior, mostrata un limite de 10 registrosSELECT * FROM table LIMIT 0,10;