DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Join rules

The following join types are recognized: INNER, LEFT and RIGHT.

Implicit table joins are recognized and transformed into INNER joins. So the following query:

SELECT * FROM tt_news, tx_dam WHERE ...

would become:

SELECT * FROM tt_news INNER JOIN tx_dam WHERE ...