vote up 8 vote down star

I've just come across this in a WHERE clause:

AND NOT (t.id = @id)

How does this compare with:

AND t.id != @id

I'd always write the latter myself, but clearly someone else thinks differently. Is one going to perform any better than the other? I know that using != in the former is going to bust any hopes for using an index that I might have had, but surely the latter will suffer the same problem?

flag

See also: stackoverflow.com/questions/723195/… – Dinah May 12 at 15:55

3 Answers

vote up 15 vote down check

These 3 will get the same exact execution plan

declare @id varchar(40)
select @id = '172-32-1176'

select * from authors
where au_id <> @id

select * from authors
where au_id != @id

select * from authors
where not (au_id = @id)

It will also depend on the selectivity of the index itself of course. I always use au_id <> @id myself

link|flag
vote up 14 vote down

Note that the != operator is not standard SQL. If you want your code to be portable (that is, if you care), use <> instead.

link|flag
vote up 3 vote down

There will be no performance hit, both statements are perfectly equal.

HTH

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.