~ZeRO sTrEsS~
18-01-2008, 20:05
raga mi dite perché questo codice non funziona??? sembra tutto corretto e non so dove sbattere la testa...
SELECT all_overridden_translations.key, all_overridden_translations.language_code, all_overridden_translations.description, all_overridden_translations.module_code, all_overridden_translations.screen_code, all_overridden_translations.screen_screen_item_id
FROM all_overridden_translations;
UNION ALL SELECT screen_item_translations.key, screen_item_translations.language_code, screen_item_translations.description, screen_item_translations.module_code, screen_item_translations.screen_code, screen_item_translations.screen_item_property_id
FROM screen_item_translations
INNER JOIN (Double_translation INNER JOIN Double_translation
ON screen_item_translations.key=Double_translation.key) ON Double_translation.language_code=screen_item_translations.language_code;
mi da syntax error in join operation...
il codice fa parte di un UNION query in access
SELECT all_overridden_translations.key, all_overridden_translations.language_code, all_overridden_translations.description, all_overridden_translations.module_code, all_overridden_translations.screen_code, all_overridden_translations.screen_screen_item_id
FROM all_overridden_translations;
UNION ALL SELECT screen_item_translations.key, screen_item_translations.language_code, screen_item_translations.description, screen_item_translations.module_code, screen_item_translations.screen_code, screen_item_translations.screen_item_property_id
FROM screen_item_translations
INNER JOIN (Double_translation INNER JOIN Double_translation
ON screen_item_translations.key=Double_translation.key) ON Double_translation.language_code=screen_item_translations.language_code;
mi da syntax error in join operation...
il codice fa parte di un UNION query in access