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.
我正在使用 Toad 数据点连接到 MySQL 数据库,如果我在客户端取消查询(如果执行时间很长),MySQL 是否仍会运行查询?
这主要取决于您的数据库引擎以及 Toad 实际执行的操作。如果它发送一个KILL查询,MySIAM它实际上会在中途终止查询,如果你使用InnoDB它,它将回滚事务,这通常需要与你决定中止进程的时间相同的时间。
KILL
MySIAM
InnoDB