Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how I can execute an SQL Join Statement on two tables like this one.
SELECT a.*, b.* FROM schemaA.TABLEA a LEFT JOIN schemaB.TABLEB b ON a.id = b.id;
I want to execute it in the database because the dataset is very big.
Any ideas or help?
SELECt a.col1, a.col2, b.col4 FROM schemaA.TABLEA a LEFT JOIN schemaB.TABLEB b ON a.id = b.id;
Exception in component tOracleInput_1
java.sql.SQLSyntaxErrorException: ORA-00942: Tabelle oder View nicht vorhanden
SELECT oes.id, oes.kurzbez, oes.langbez, oes.bst FROM (SELECT id, kurzbez, langbez, bst FROM PAR2_CLEANSING_AREA.CAS_ZAS_M_OES) oes
LEFT OUTER JOIN (SELECT elem2 FROM PAR3_CORE.COR_M_S_BST) bst
ON oes.bst = bst.elem2
SELECT oes.id, oes.kurzbez, oes.langbez, oes.bst
FROM PAR2_CLEANSING_AREA.CAS_ZAS_M_OES oes
LEFT OUTER JOIN PAR3_CORE.COR_M_S_BST bst
ON oes.bst = bst.elem2