I have seen Sql that uses both != and <> for not equal was curious what the prefigured syntax is and why?
I like != because <> reminds me of VB
|
|
I have seen Sql that uses both != and <> for not equal was curious what the prefigured syntax is and why? I like != because <> reminds me of VB
|
||||
|
|
|
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... |
||
|
|
|
|
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. |
||||
|
|
|
For what it's worth, here's a roundup of a bunch of popular database vendors and their support for
|
|||
|
|
|
They're both valid and the same with respect to SQL SERVER. |
||||||
|
|
|
ANSI SQL Standard defines http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt ( There is no |
|||
|
|
|
|
<> is the valid SQL according to the SQL-92 standard. http://msdn.microsoft.com/en-us/library/aa276846(SQL.80).aspx |
||||||||
|
|
|
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 <>. |
||
|
|
|
|
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) |
||
|
|
|
|
!= despite being non ansi is more in the true spirit of sql as readable language. It screams not equal. <> says its to me (less than, greater than) which is just weird. I know the intention is that its either less than or greater than hence not equal but thats 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 yo. |
||
|
|