Hi guys,I tried doing a search in the forum and it has probably confused me a little more. i am trying to literally add three tables together that have the same columns. would i do this using an full outer join? i.e:and i also think my code is wrong as im not sure how to do a full outer on 3 tables?SELECT July.usage_type_code, July.Billed_date, July.amount, aug.usage_type_code, aug.Billed_date, aug.amount,sep.usage_type_code, sep.Billed_date, sep.amountFROM PJWASH_RDEAL44_JUL06 July FULL OUTER JOIN PJWASH_RDEAL44_aug06 Aug and PJWASH_RDEAL44_sep06 sep ON july.Billed_date = aug.Billed_date sep.billed_dateORDER BY july.billed_date ASC
Champinco