我试图在mysql workbench上截断我的表
truncate pbx_api.confbridges;
但它说
Error Code: 1192. Can't execute the given command because you have active locked tables or an active transaction
答案 0 :(得分:5)
这意味着该表被独占锁定并处于交易状态。在滚动或提交之前,您不能截断
答案 1 :(得分:2)
我使用SQL查询解决了此问题:UNLOCK TABLES;