Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Duplicate of: Should I use != or <> for not equal in TSQL

Within SQL Server's T-SQL should I use "<>" or "!=", or does it really even matter?

share|improve this question
Duplicate - stackoverflow.com/questions/723195/… – madcolor Apr 9 '09 at 13:42

marked as duplicate by nickf, Rex M, Sean Bright, Matt Rogish, Mehrdad Afshari Apr 9 '09 at 13:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

8 Answers

up vote 1 down vote accepted

I'd say it comes down to your coding conventions. I personally like to use != as <> reminds me of dirty dirty VB and gives me a bad gut feeling. Plus I comprehend it better as it is exact to C#'s not equal operator.

share|improve this answer
Down votes with no reasoning? Gasp! – Pat Apr 6 '10 at 18:43

I don't know SQLServer, but the SQL standard uses '<>', so follow the standard

share|improve this answer
1  
Woah woah woah, which is the T-SQL standard? I always thought != was the T-SQL, and <> being the MS-way? – Kieran Senior Apr 9 '09 at 13:41
1  
T-SQL is short for Transact-SQL, which is Microsoft's SQL Server implementation of SQL. T-SQL supports ANSI SQL and more. – Adam Robinson Apr 9 '09 at 13:51

I believe that != is T-SQL specific (i.e. not standard SQL). So, you should use <> if there's any chance that you'll ever port your code to use a different DBMS.

Personally, I would use <> and forget about it.

share|improve this answer
1  
!= also works in MySQL, PostgreSQL and sqlite. – Can Berk Güder Apr 9 '09 at 13:45

Typical SQL usage in my experience is to use <>. I've never seen anyone use !=; I wasn't even aware that worked.

share|improve this answer

!= isn't part of the standard, but it is part of T-SQL..

SQL-92 standard , T-SQL

Duplicate Post..

http://stackoverflow.com/questions/723195/should-i-use-or-for-not-equal-in-tsql/723203#723203

share|improve this answer
these should go in the comments on the question so they're easier to see – nickf Apr 9 '09 at 13:41
Fair point, technically an exact duplicate as the answer would be the same. – Kieran Senior Apr 9 '09 at 13:43

Use <> since most people are familiar with that, and whenever NULLs are possible, remember that NULL is not equal to NULL, so this is sometimes necessary:

ISNULL(MY_FIELD,0) <> ISNULL(MY_FIELD,0)
share|improve this answer
2  
That would also equate a legit 0 to NULL, which may not be what you want. I always use (MY_FIELD1 <> MY_FIELD2 OR (MY_FIELD1 IS NULL AND MY_FIELD2 IS NULL)) but I'd be interested in seeing if someone else has a better way. – CodeMonkey1 Apr 9 '09 at 14:11
Yes, that's a great point. The method you describe is more reliable. – JosephStyons Apr 9 '09 at 14:28

If you only use SQL Server, it doesn't matter. They are synonyms.

share|improve this answer

they are identical.

Look MSDN.

share|improve this answer

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