Script
Script
explain plan for select nom from ville where insee = '1293';
Select plan_table_output from table(dbms_xplan.display());
explain plan for select d.nom from departement d, ville v where d.id = v.dep and
insee = 1293;
Select plan_table_output from table(dbms_xplan.display());
explain plan for select d.nom from departement d, ville v where d.id = v.dep and
insee = '1293';
Select plan_table_output from table(dbms_xplan.display());