[mysql]select for update for update transaction

DB/Mysql 2016. 7. 28. 18:38 Posted by Request

 

특정 row에 lock를 걸어서

다른 세션의 'select for update' 혹은 'select lock in share mode' 쿼리를 블락하고

싶은 경우 사용된다.

 

예)

select * from tableNm where column_name = '1' for update

 

 

출처 :

http://blog.daum.net/hazzling/17187062