Probably because inner is not supported (and not required either)
SELECT whatever
FROM table1, table2, table3
WHERE table1.fielda = table2.fieldb
AND table3.fieldc = table1.fieldy;
fielda and fieldb can be anything, indexed/nonindexed, PK/non-PK, anything.
Just remember that there must be a link in the where clause that links all tables together somehow.
You can JOIN 34 tables, but you must be able to 'walk' across the JOINs from the first table to every other table.
A forum, a FAQ, what else do you need?