欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql分布式和分区limitoffset加速_MySQL

程序员文章站 2022-06-13 14:08:22
...
bitsCN.com

前一段时间在写分页语句。单机的mysql一般使用:

select * from [table] limit [length] offset [offset] 
select * from [table] where column > [pre_column_value] limit [length]
select * from [table] where key_column > [pre_key_column_value] order by key_column limit [length]
bitsCN.com
相关标签: mysql 单机