Viewing 5 posts - 1 through 5 (of 5 total)
But if we have LEFTor RIGHT JOIN as below,is it possible to improve something at this case?
SELECT pr.column1,
pr.column2
FROM PlayersTypesAS pr WITH(NOLOCK)
INNER JOIN dbo.Players AS p WITH(NOLOCK) ON p.PlayerTypeID = pr.PlayerTypeID
LEFT...
February 1, 2024 at 5:17 pm
Thank you all !
February 1, 2024 at 5:13 pm
We have an index on PlayersRestrictionID, but not clustered
February 1, 2024 at 3:09 pm
We saw that it improves performance.
Why not? Making join usually takes more resources and time then simple select.
February 1, 2024 at 12:25 pm
Viewing 5 posts - 1 through 5 (of 5 total)