Alternate join associativity can be forced with parentheses, as in: ```sql SELECT * FROM a NATURAL JOIN (b NATURAL JOIN c); ``` The current parser doesn't support it, nor is the design of the SQLSelect struct particularly conducive to it.