No details: MySQLmysqlSELECT * FROMtableLIMIT5, 10; Retrieve record Row 6-15. To retrieve all record rows from an offset to the end of the record set, you can specify the second parameter as-1: mysqlSELECT * FROMtableLIMIT95,-1; Retrieve the row 96-last. if only one parameter is specified, it indicates
No details MySQL mysql SELECT * FROM table LIMIT 5, 10; // retrieve record rows 6-15 // to retrieve all record rows FROM an offset to the end of the record set, you can specify the second parameter-1: mysql SELECT * FROM table LIMIT 95,-1; // you can retrieve 96-last records. // if only one parameter is specified, it indicates
<无详细内容> MySQL
Mysql> SELECT * FROM table LIMIT 5, 10; // retrieve records Row 6-15 // to retrieve all record rows FROM an offset to the end of the record set, you can specify the second parameter-1: mysql> SELECT * FROM table LIMIT 95,-1; // retrieve the 96-last record row. // if only one parameter is specified, it indicates the maximum number of record rows returned: mysql> SELECT * FROM table LIMIT 5; // retrieves the first five record rows // In other words, LIMIT n is equivalent to LIMIT 0, n.