[MYSQL] Lock 구조 & Query
Transcation 과 Lock 1. Transcation 논리적인 작업단위로 전부터리되거나 처리되지 않는 (Commit / Rollback) 원자성을 보장하기 위한 기능이다. MySQL InnoDB의 격리 레벨(isolation level)이 REPEATABLE TABLE 이다. show session variables like '%isola%'; +-----------------------+-----------------+ | Variable_name | Value | +-----------------------+-----------------+ | transaction_isolation | REPEATABLE-READ | +-----------------------+-----------------..