I want a paging query in common format, not hard code, by this:
set @pageSize = 10; set @pageIndex = 2;
select * from city LIMIT (@pageIndex-1)*@pageSize, @pageSize;
but the mysql told me that:
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(@pageIndex-1)*@pageSize, @pageSize' at line 1
what's the problem about this?