如何在mySql中创建Select for Update错误

时间:2016-08-10 13:32:18

标签: mysql sql locking

我已阅读有关Select for Update的信息,还查看了this问题,并希望锁定本地数据库中的行,以确保我的查询有效。

我试过了:

select * from User where id=10 for update; 
>for update 1 row(s) returned   0.063 sec / 0.000 sec

select * from User where id=10 for update;
>for update 1 row(s) returned   0.063 sec / 0.000 sec

我预计第二次选择更新语句会出错。

如何锁定我的本地更新行?

0 个答案:

没有答案