如何在Linux for DB2中使用命令杀死多个进程列表

如何在Linux for DB2中使用命令杀死多个进程列表

我在Linux服务器中连接了mysql,mysql -u root -p dbnmae然后我使用cmd show processlist;,它的显示结果如下

+---------+------+
| Id      | User |
+---------+------+
| 123     | root |
| 1234    | root |
| 1235    | root |
| 1236    | root |
| 1004    | root |
| 1205    | root |
| 1216    | root |

现在我想仅使用一个命令来终止一些 process_id (1234,1005,1205)。当我尝试用多种方式杀人但效果不佳时。它显示错误就像

mysql> kill 1234 1005 1205;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1205' at line 1

您能帮我解决这个问题吗?这是一个 DB2 服务器。

相关内容