I'm trying to lock all tables involved in a particular set of queries but one of the queries does a self JOIN to itself. How would I lock that one?
LOCK TABLES employees e READ,
employees e2 READ;
Superficially it seems like that should work but in my testing it doesn't seem to? Is my testing just botched or does that really not work? Or could there be something else going on that I'm unaware of?
You need to obtain a lock for both the alias name and the table itself
here & here