Tagged Questions
14
votes
4answers
2k views
Testing for inequality in T-SQL
I've just come across this in a WHERE clause:
AND NOT (t.id = @id)
How does this compare with:
AND t.id != @id
Or with:
AND t.id <> @id
I'd always write the latter myself, but clearly ...