We have 2 tables, gl_ledger and gl_ledger_hist which we have done a UNION ALL with as
select * from gl_ledger UNION ALL select * from gl_ledger_hist
and it brings in our data from this, but we also need to join the data together with a third table, gl_account which has a different of columns
all three tables should be able to be joined by the field 'id'
thanks for any help provided
select * from gl_ledger UNION ALL select * from gl_ledger_hist
and it brings in our data from this, but we also need to join the data together with a third table, gl_account which has a different of columns
all three tables should be able to be joined by the field 'id'
thanks for any help provided