最近在复习数据库,关于隔离等级这一块有些疑问,希望大佬解惑 四种隔离等级:read uncommitted, read committed, repeatable read, serialization 其中read committed解决了脏读问题,具体是怎么解决的? 如:数据库处于read committed态 事务A 事务B select * from t where a=1; ...