use db1; -- 进入数据库 begin; -- 开启事物,锁必须在事物内使用 select * from class where cid = 1 for UPDATE ; -- for update表示锁定这条数据 commit; -- 提交事物,在提交事物之后,锁解除。