标签: oracle oracle11g
我最近试图了解Oracle的数据字典表,我发现了一些相当奇怪的东西。
当我运行像
select * from table where id in (?, ?);
只有一次,我注意到在v $ sql中为同一个查询创建了2行。那是为什么?
但是,如果我运行类似
select * from table where id = 10;
我看到只创建了一行。