锁表
select * from sys_config for update 在有数据的情况会锁表!(表锁)
select * from sys_config where id='222' for update 只会在修改id='222' 的数据是才会阻塞(行锁)
如果没有查询到数据,则不会锁表。
锁表会导致其他线程阻塞。对于多线程能起到安全用。
select * from sys_config for update 在有数据的情况会锁表!(表锁)
select * from sys_config where id='222' for update 只会在修改id='222' 的数据是才会阻塞(行锁)
如果没有查询到数据,则不会锁表。
锁表会导致其他线程阻塞。对于多线程能起到安全用。