This is an inner connection.
Yes, only records with corresponding identifiers will be returned.
This is the same as:
select *
from table1 tbl1
inner join table2 tbl2
on tbl1.id = tbl2.id
Personally, I prefer an explicit designation INNER JOIN.
source
share