我有一个有大约100行的表格, 我想每次得到数字和数字之间的行, 像这样
如果`i=1 ',我想得到行'0 1 2 3 4 '
如果`i=2'我想得到5 6 7 7 8 9 '
如果`i=3'我想得到10 11 12 12 13 14 '
and maybe the last value of i will just take 3 or 4 rows not 5 i think the solution will be something like this
select * from question limit (i-1)*5 , i*5-1
但是不工作, 因为我不知道如何在查询中使用变量, 当我尝试 i=1 时, 它不工作, 我有一个语法错误