我有下面的SQL,它将在Oracle 11g上运行。
我想知道直接执行SQL和通过视图执行SQL有什么不同,以及性能有什么不同
select a.*, b.*, c.*
from TABLE_A a
join TABLE_B b on b.id = a.id
join TABLE_C c on c.taskid = b.taskid
where (b.taskid in (1,2,3))
or (b.taskid in (4,5) and a.creation_date > (sysdate-10) );发布于 2019-11-15 15:53:16
下面的问题-答案满足你的好奇心了吗,我发现它很相似:
https://stackoverflow.com/questions/58439712
复制相似问题