I have updated my SQL Server from 2008 to 2019.
I get the following error when running a stored procedure:
select
pr.productID, @eoddate,
tblSTlocation.locationID, 0, 0, 0, 0, 0, 0,
operatorID, null, 0, 0, valprice
from
tblSTproduct pr, tblSTcosting co, tblSLoperator, tblSTlocation
where
pr.productID *= co.productID
How do I convert the *=
to a left join
?