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.
我想在 mysql 表中插入大约 81000 行,但是这样做需要很长时间,插入这么多行需要 9.5 分钟,而仅选择这些值需要 7.5 分钟。有谁知道如何优化插入查询?
而且我也不明白为什么游标显示的行数比表中的总行数多一行。??
尝试在插入之前锁定表(并在之后解锁)。
您也可以使用扩展插入。
这可以加快插入速度。
至于选择,我想说您可能正在做一个没有索引的复杂查询。但是您需要更加明确,如果没有更多信息,我们无法为您提供太多帮助。