MySQL - Table 'my_table' was not locked with Lock Tables

前端 未结 7 759
春和景丽
春和景丽 2020-12-29 18:41

I try and load tables via MySQL and get the following error?

MySQL said: Table \'cms\' was not locked with LOCK TABLES

Why does

7条回答
  •  庸人自扰
    2020-12-29 19:28

    The solution for me was to unlock the tables. They had been locked by a previous queries which failed before reaching the unlock tables statement.

    UNLOCK TABLES
    SELECT ...
    

提交回复
热议问题