I work with mySQL InnoDB Table. Mysql database queries with php script. When A user select a record in specific table I'd like to lock this and allow only read process for other user. So I try to use
SELECT * FROM parent WHERE NAME = 'Jones' LOCK IN SHARE MODE;
So my question is when user B try to select the same record how to know that the record is locked and when user A try to update record how to authorize this operation.
Thanks for helping