Please help me understanding which of the following two queries are good from performance points. I have checked the Explain Plan cost which is same for both the queries.
1)
select tbl_LP.fn FNr, s.sourceNr SNr, Product.quantity
from tbl_Source s, tbl_LP, Product
where Product.tbl_Source_id=s.id and Product.tbl_LP_m_id=tbl_LP.id
and s.sourceNr like 'T%';
2)
Select tbl_LP.fn FNr, s.sourceNr SNr, Product.quantity
from tbl_Source s
INNER JOIN Product ON Product.tbl_Source_id=s.id AND s.sourceNr like 'T%'
INNER JOIN tbl_LP ON Product.tbl_LP_m_id=tbl_LP.id;