For the complete documentation index, see llms.txt. This page is also available as Markdown.

Joins

select attributes from r1, r2 where r1.attribute=r2.attribute

Joins are done using foreign keys.

A join can also be explicitly specified as follows:

select * from r natural join s

Last updated