登录mysql
show processlist;
删除进程方法:
kill 进程id;
快捷点的方法
select concat('KILL ',id,';') from information_schema.processlist where state= 'updating'; //根据状态查询
登录mysql
show processlist;
删除进程方法:
kill 进程id;
快捷点的方法
select concat('KILL ',id,';') from information_schema.processlist where state= 'updating'; //根据状态查询