我在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 服务器。