SELECT * FROM table LIMIT 5,-1; 在百度找了些,说是这么写,但是报错呀,望高人指点 受累,试过了再说,谢谢
------解决方案-------------------- SELECT * FROM table LIMIT 5,1
只能使用非负的整数 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 non-negative integer constants (except when using prepared statements).
------解决方案--------------------
------解决方案--------------------
直接 select * from table limt 4,999999999 后面放一个极大的数字就可以了。