私はいくつかのMysqlクエリをPostgresqlに移動している最中であり、機能しないこのクエリに遭遇しました。
select (tons of stuff)
from trip_publication
left join trip_collection AS "tc" on
tc.id = tp.collection_id
left join
trip_author ta1, (dies here)
trip_person tp1,
trip_institution tai1,
trip_location tail1,
trip_rank tr1
ON
tp.id = ta1.publication_id
AND tp1.id = ta1.person_id
AND ta1.order = 1
AND tai1.id = ta1.institution_id
AND tail1.id = tai1.location_id
AND ta1.rank_id = tr1.id
クエリは、上記でマークした「trip_authorta1」行で終了しているようです。実際のエラーメッセージは次のとおりです。
syntax error at or near ","
LINE 77: (trip_author ta1, trip_person tp1, ...
ドキュメントを確認しましたが、正しいようです。私はここで何を間違っているのですか?フィードバックをいただければ幸いです。