Scenario:
I'm getting the same explain plan (Tab Access Full and same numbers for Cost, Bytes and Cardinality) for two different queries on the same table(not indexed / no PK / no FK).
Query1:
select * from tab1 where col1 = 'A'
Query2:
select *
from tab1
where col1 = 'A'
and months_between(decode(col2,NULL,col3,col4),col5)<13;
Question:
Won't the added conditions in Query2 needs some more time to process?
or
Is it like, even Query1 takes the time as that of Query2, which is the maximum time needed for almost any such query on the table(Tab Access Full)?
Please note that the table (data vol. is always < 0.5 mil) is not showing any performance issue so far and this is just to intrepret the explain plan provided by oracle COB, so that it would be beneficial for future enhancement.