I'm trying to do a multiple join between three tables. Is it somehow possible to do this with this syntax where I only use the keywords LEFT JOIN and ON once?
SELECT
DW_STAR.PA_POSTER_FACT.*
FROM
DW_STAR.PA_POSTER_FACT
LEFT JOIN
DW_STAR.LEVERANDOER_DIM,
DW_STAR.FAKTURAFILER
ON
DW_STAR.PA_POSTER_FACT.LEVERANDOER_DIM = DW_STAR.LEVERANDOER_DIM.DIMENSION_KEY AND
DW_STAR.PA_POSTER_FACT.FAKTURA_BILAGSNUMMER = DW_STAR.FAKTURAFILER.FAKTURA_ID
WHERE
ROWNUM < 10