Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Testing for inequality in T-SQL

I have seen SQL that uses both != and <> for not equal. What is the prefigured syntax and why?

I like != because <> reminds me of Visual Basic.

share|improve this question
2  
See also: stackoverflow.com/questions/7884/… – Dinah May 12 '09 at 15:54
Good question. I was just wondering the same thing. – Munklefish Aug 28 '09 at 13:01
good question - but what's the matter with VB :) – WaterBoy Jun 27 '12 at 7:55

marked as duplicate by casperOne Jul 13 '12 at 15:40

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.

11 Answers

up vote 140 down vote accepted

Technically they function the same if you’re using MS SQL aka T-SQL. If you're using it in stored procedures there is no performance reason to use one over the other. It then comes down to personal preference. I prefer to use <> as it is ANSI compliant.

You can find links to the various ANSI standards at...

http://en.wikipedia.org/wiki/SQL

share|improve this answer
9  
I had always preferred to use != because of its existence in every C-influenced language I have used, and because the Python documentation says: "The forms <> and != are equivalent; for consistency with C, != is preferred; where != is mentioned below <> is also accepted. The <> spelling is considered obsolescent." But SQL is not Python! – Iain Elder Nov 4 '11 at 1:22

For what it's worth, here's a roundup of a bunch of popular database vendors and their support for != versus <> as the inequality operator:

Most implementations support the ANSI standard operator <> as well as the != operator that is familiar to users of most popular programming languages.

  • MySQL 5.1: supports both != and <>
  • PostgreSQL 8.3: supports both != and <>
  • SQLite: supports both != and <>
  • Oracle 10g: supports both != and <>
  • Microsoft SQL Server 2000/2005/2008: supports both != and <>
  • IBM Informix Dynamic Server 10: supports both != and <>
  • InterBase/Firebird: supports both != and <>
  • Apache Derby 10.6: supports both != and <>
  • Sybase Adaptive Server Enterprise 11.0: supports both != and <>

The last one supports only the ANSI standard operator:

  • IBM DB2 UDB 9.5: supports only <>
share|improve this answer
Nice! I haven't worked with Oracle in a while - I remember always forgetting to use <>! – Jarrod Dixon Jul 5 '09 at 7:22

'<>' is from the SQL-92 standard, '!=' is a proprietary T-SQL operator. It's available in other databases as well, but since it isn't standard you have to take it on a case-by-case basis.

In most cases, you'll know what database you're connecting to so this isn't really an issue. At worst you might have to do a search and replace in your sql.

share|improve this answer
I have see mysql sql use it as well – Bob The Janitor Apr 6 '09 at 21:05
Apparently != works in Oracle as well. – Michael Todd Apr 6 '09 at 21:44

The ANSI SQL Standard defines <> as the "not equal to" operator,

http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt (5.2 <token> and <separator>)

There is no != operator according to the ANSI/SQL 92 standard.

share|improve this answer

They're both valid and the same with respect to SQL Server,

http://msdn.microsoft.com/en-us/library/ms190296.aspx

share|improve this answer
That's SQL Server specific. Granted he asks about SQL Server, but can you find an ANSI spec reference to see if it's guaranteed to be portable for those of us who like to know that sort of thing? – Joel Coehoorn Apr 6 '09 at 21:00
2  
@Joel Coehoorn, if you very port your T-SQL code "<>" and "!=" will be the least of your worries!! – KM. Apr 6 '09 at 21:10
1  
Porting isn't the issue - it's when, as a developer, you're required to go back and forth between environments. Consistency is good. – Mark Ransom Apr 6 '09 at 21:28

<> is the valid SQL according to the SQL-92 standard.

http://msdn.microsoft.com/en-us/library/aa276846(SQL.80).aspx

share|improve this answer
A an appropriate reference and I'll upvote. – Joel Coehoorn Apr 6 '09 at 20:58
1  
Both are valid, but '<>' is the SQL-92 standard. – Justin Niessner Apr 6 '09 at 21:01
Merhdad has the reference. – Joel Coehoorn Apr 6 '09 at 21:01

You can use whichever you like in TSQL, the docs say they both function the same way. I prefer != because it reads "not equal" to my (C/C++/C# based) mind, but DB gurus seem to prefer <>.

share|improve this answer

It seems that Microsoft themselves prefer <> to != as evidenced in their table constraints. I personally prefer using != because I clearly read that as "not equal", but if you enter [field1 != field2] and save it as a constrait, the next time you query it, it will show up as [field1 <> field2]. This says to me that the correct way to do it is <>.

share|improve this answer

!=, despite being non-ANSI, is more in the true spirit of SQL as a readable language. It screams not equal. <> says it's to me (less than, greater than) which is just weird. I know the intention is that it's either less than or greater than hence not equal, but that's a really complicated way of saying something really simple.

I've just had to take some long SQL queries and place them lovingly into an XML file for a whole bunch of stupid reasons I won't go into.

Suffice to say XML is not down with <> at all and I had to change them to != and check myself before I riggedy wrecked myself.

share|improve this answer
why not just CDATA it? what happens when your query contains XML? – Janus Troelsen Sep 8 '12 at 18:30

I understand that the C syntax != is in SQL Server due to its UNIX heritage (back in the Sybase SQL Server days, pre MSSQL 6.5)

share|improve this answer

I believe <> is the standard but I like !=, they behave the same so I think it's a personal preference thing, like not not putting {} on a one like If statment

share|improve this answer

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