MySQL 8.3 Release Notes
要了解 MySQL 服务器当前正在执行什么操作,可以检查进程列表,该列表显示服务器中当前执行的操作。例如:
mysql> SHOW PROCESSLIST\G
*************************** 1. row ***************************
Id: 5
User: event_scheduler
Host: localhost
db: NULL
Command: Daemon
Time: 2756681
State: Waiting on empty queue
Info: NULL
*************************** 2. row ***************************
Id: 20
User: me
Host: localhost:52943
db: test
Command: Query
Time: 0
State: starting
Info: SHOW PROCESSLIST
线程可以使用 KILL
语句杀死。请参阅 第 15.7.8.4 节,“KILL 语句”。