Could anyone tell me what i am doing wrong here,
I want to do join three tables together,
I have one master table and i am performing a left outer join on it with two tables.
select * from custmast a left outer join chainmlrc b, chainbanner c on
a.country = b.country and
a.can_prim_chain_code = b.[chain ID] and
a.can_prim_chain_code = c.[chain ID] and
a.can_prim_region_code =c.[banner ID]
Is this possible or do i have to create a view for the first join and then join it with the second table.
I want to do join three tables together,
I have one master table and i am performing a left outer join on it with two tables.
select * from custmast a left outer join chainmlrc b, chainbanner c on
a.country = b.country and
a.can_prim_chain_code = b.[chain ID] and
a.can_prim_chain_code = c.[chain ID] and
a.can_prim_region_code =c.[banner ID]
Is this possible or do i have to create a view for the first join and then join it with the second table.