Comments
Sort by recent activity
SELECT @Count = Count(1)
FROM MyTable (nolock)
WHERE MyID = 0
incorrectly underlining the nolock hint / comments
SELECT @Count = Count(1)
FROM MyTable (nolock)
WHERE MyID = 0
incorrectly underlining the nolock hint
FYI, I imported my aliases by replicating the exact structure (including the double encoding) using search/replace in a text editor from the 3.9 correctly formatted XML.
You can see how to do this by adding one alias in v4, then edit the file. / comments
FYI, I imported my aliases by replicating the exact structure (including the double encoding) using search/replace in a text editor from the 3.9 correctly formatted XML.
You can see how to do this ...