I have the following SQL Server 2000 query:
select distinct
m.[Index], m.part as [Part No]
from
Ctable c, MTable m
where
m.part *= c.part
Is the corresponding SQL Server 2012 query for it this?
select distinct
m.[Index], m.part as [Part No]
from
Ctable c
right join
MTable m on m.part = c.part
So basically Asterisk= is left join and =Asterisk is right join? I had to do right join on the above query since MTable is the right table on the 2012 query. Please advice.