-------------------------------------------+ | EXAMINED_ROWS | The number of rows the process has examined. | +---------------------+------------------------------------------------------+ | QUERY_ID | Query ID. | +---------------------+------------------------------------------------------+ Note that the PROGRESS field from the information schema, and the PROGRESS field from SHOW PROCESSLIST display different results. SHOW PROCESSLIST shows the total progress, while the information schema shows the progress for the current stage only. Threads can be killed using their thread_id or their query_id, with the KILL statement. Since queries on this table are locking, if the performance_schema is enabled, you may want to query the THREADS table instead. Examples -------- SHOW PROCESSLIST; +----+-----------------+-----------+------+---------+------+------------------- ----+------------------+----------+ | Id | User | Host | db | Command | Time | State | Info | Progress | +----+-----------------+-----------+------+---------+------+------------------- ----+------------------+----------+ | 2 | event_scheduler | localhost | NULL | Daemon | 2693 | Waiting on empty queue | NULL | 0.000 | | 4 | root | localhost | NULL | Query | 0 | Table lock | SHOW PROCESSLIST | 0.000 | +----+-----------------+-----------+------+---------+------+------------------- ----+------------------+----------+ URL: https://mariadb.com/kb/en/show-processlist/https://mariadb.com/kb/en/show-processlist/