我有以下查询。它似乎是锁定表/行。我不想要它。
select * from (
select a from table_a
UNIOIN
select a from table_b) with ur;
或者我应该把#34;与UR"对于每个子查询,如下所示?
select * from (
select a from table_a with ur
UNIOIN
select a from table_b with ur) with ur;
是否有任何工具可以检查哪个查询在db中执行时具有哪种隔离级别?