How to Join Tables in ACC
Hi,
I would like to join broadlog table and tracking log table.
Something like this in SQL world:
select
a.col1,
b.col2,
from table1 as a
left outer join table2 as b
on a.id=b.id
I see there is a built-in linkage between Broadlog table and trackinglog table, but I would like to create a new table that has characteristics of LOJ