Hello All,
Question: notice the change on the where statement, will the change impact performace if id field on table_a is indexed ? where id is unique value on table_a
select *
from table_a a,
table_b b,
table_c c
where a.id = b.id
and b.another_id = c.another_id
and a.id = 100;
OR
select *
from table_a a,
table_b b,
table_c c
where a.id = 100
and a.id = b.id
and b.another_id = c.another_id