Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有大量要处理的记录,例如:100,000 条记录。我的用例有 4 个步骤:
我不想一次性从表中选择所有记录进行处理:有没有办法可以分批选择并且不想为一条记录更新表?是否有批量级别的批量/批量更新选项?
或者有没有其他更好的方法来处理这个用例?任何建议高度赞赏。
我会编写 SQL 选择查询以仅返回 N 条记录(类似LIMIT 100或等价的),其中的 where 子句根据状态标志排除已处理的记录。
LIMIT 100