I write my connection request as follows
UPDATE UPLOAD_TEMP SET UPLOAD_TEMP.Borr_Add_Req = t2.YesNoResponse, FROM UPLOAD_TEMP t1 INNER JOIN GB_RequiredFields t2 ON t1.State = t2.StateCode AND t1.County_Id = t2.CountyId AND t1.Group_code = t2.Doc_type_group_code
However, it can also be written in the same way.
UPDATE UPLOAD_TEMP SET UPLOAD_TEMP.Borr_Add_Req = t2.YesNoResponse, FROM UPLOAD_TEMP t1 INNER JOIN GB_RequiredFields t2 ON t1.State = t2.StateCode WHERE t1.County_Id = t2.CountyId AND t1.Group_code = t2.Doc_type_group_code
Is there any difference between both and which is the preferred way of code.
Rohit source share