读锁:lock table xxx read; (加上读锁之后,会阻止自己和其他进程update操作)
取消读锁:unlock tables;
写锁:lock table xxx read;(加上写锁后,会阻止其他进程update操作)
取消写锁:unlock tables;
读锁:lock table xxx read; (加上读锁之后,会阻止自己和其他进程update操作)
取消读锁:unlock tables;
写锁:lock table xxx read;(加上写锁后,会阻止其他进程update操作)
取消写锁:unlock tables;