Joins
select attributes from r1, r2 where r1.attribute=r2.attributeselect * from r natural join sLast updated
select attributes from r1, r2 where r1.attribute=r2.attributeJoins are done using foreign keys.
A join can also be explicitly specified as follows:
select * from r natural join sLast updated