UPDATE statements are in “query end state”

前端 未结 3 375
庸人自扰
庸人自扰 2021-01-13 14:29

We recently upgraded mysql database which is running on mysql server version 5.5.8. After the upgrade sometimes we are seeing the simple upgrade staements taking more than 1

3条回答
  •  难免孤独
    2021-01-13 14:41

    Try adding quotes to any value you use in the query as they were all strings. That helped me many times. For example:

    UPDATE Accounts SET IPadd = 'xx.xx.xx.xx' WHERE Id='xx';
    

提交回复
热议问题