行級鎖:
select * from abin1 t where t.id=21 for update;
表級鎖:
lock table abin1 IN EXCLUSIVE MODE (nowait);
select * from abin1 t where t.id=21 for update;
表級鎖:
lock table abin1 IN EXCLUSIVE MODE (nowait);
少年阿賓那些青春的歲月 |
行級鎖:
select * from abin1 t where t.id=21 for update; 表級鎖: lock table abin1 IN EXCLUSIVE MODE (nowait); |