sql - Outer join in Oracle -
Text after "
I have written a code for external join in Oracle. It's giving me the 'keyword missing' error
table Fenergo_data_01 can be created as selection tab1. *, Tab2. *, Tab3 *, Tab4 from Fenergo_ext_ref_data * Tab1 full external Fenergo_cntry_incorp_data tab2 join full join external tab3 join Fenergo_address_data full external tab1.FGO_ID = tab2.FGO_ID and tab1.FGO_ID = tab3.FGO_ID and Fenergo_MCH_data tab4 on tab1.FGO_ID = tab4.FGO; Can anyone help me?
At the end of the join condition for each need to specify ( for section), did you like to join once: CREATE TABLE selected as Fenergo_data_01 tab 1. *, Tab 2 *, Tab3 *, Tab 4 * Fenergo_ext_ref_data Tab 1 on full oz Fenergo_cntry_incorp_data tab2 from tab 1. FGO_ID = Tab 2 FGO_ID Full Outer Tab 1 on Fenergo_address_data tab3 FGO_ID = Tab3 Join FGO_ID FULL OUTER Fenergo_MCH_data tab 4 Tab1.FGO_ID = tab4.FGO;
Comments
Post a Comment