我已阅读有关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
我预计第二次选择更新语句会出错。
如何锁定我的本地更新行?