So I have two queries
select key, A, B, C, D, E, F
from
(select key, A, B, C from table1) t1
join
(select key, D, E, F from table2) t2
on t1.key = t2.key
and
select key, A, B, C, D, E, F
from
table1 join table2
on table1.key = table2.key
Are these queries the same in terms of querying time?
If not, which one runs faster and why?