record lock
A lock on an index record. For example, SELECT c1 FOR UPDATE FROM t WHERE c1 = 10;
prevents any other transaction from inserting, updating, or deleting rows where the value of t.c1
is 10. Contrast with gap lock and next-key lock.
See also gap lock.
See also lock.
See also next-key lock.