美文网首页
MySQL 大量数据下进行Limit

MySQL 大量数据下进行Limit

作者: 是瑞瀛呀 | 来源:发表于2021-01-07 15:44 被阅读0次

    经实验

    mysql> select id from table limit 10000000,3 ;
    +----------+
    | id       |
    +----------+
    | 10039433 |
    | 10039434 |
    | 10039435 |
    +----------+
    3 rows in set (4.31 sec)
    
    
    mysql> select * from table limit 10000000,3 ;
    +----------+-----------------------------+------------------------------+
    | id       | xxxxxxxx                    | xxxxxxxx                     |
    +----------+-----------------------------+------------------------------+
    | 10039433 | xxx   xxx                   | xx                           |
    | 10039434 | xxx   xxx                   | xx                           |
    | 10039435 | xxx   xxx                   | xx                           |
    +----------+-----------------------------+----------------------------+-+
    3 rows in set (17.37 sec)
    

    故对于大数据量limit可以分段操作。

    相关文章

      网友评论

          本文标题:MySQL 大量数据下进行Limit

          本文链接:https://www.haomeiwen.com/subject/eemzoktx.html