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.

There are two not equals operator - != and <>.

What's the difference between them? I heard != is more efficient than other for comparing strings. Could anyone qualitative comment on this stmt.

share|improve this question
If i had to guess, I would say one is equivalence vs equality, like the difference between != and .equals() in java. But that's just a guess. – corsiKa Nov 3 '10 at 17:28
<code>Connected to: Oracle8i Enterprise Edition Release 8.1.7.4.1 - Production With the Partitioning option JServer Release 8.1.7.4.1 - Production SQL> select * from dual where 1!=2; D - X<code> – N. Gasparotto Nov 3 '10 at 19:25
sorry, cannot format properly the output. But it was already there before 9i. – N. Gasparotto Nov 3 '10 at 19:28
1  
<> is more efficient: to type != you have to hold Shift, press !, then release Shift, press =; to type <> you only need to hold Shift, type < and >, and then release Shift - resulting in faster coding! jk ;) – Jeffrey Kemp Nov 4 '10 at 1:14

5 Answers

up vote 8 down vote accepted

They are the same (as is the third form, ^=).

Note, though, that they are still considered different from the point of view of the parser, that is a stored outline defined for a != won't match <> or ^=.

This is unlike PostgreSQL where the parser treats != and <> yet on parsing stage, so you cannot overload != and <> to be different operators.

share|improve this answer
they have significant performance difference in oracle 10.2 onwards. please see dba-oracle.com/t_not_equal_operator.htm – shanyangqu Aug 17 '12 at 9:24
1  
@shanyangqu - the important part to read from that link is "this note by Scott Canaan suggests that in Oracle 10.2, they can produce different execution plans, and hence, different execution speeds" - but in the end, the effect was not proven, and several (valid, IMO) theories that would explain the observed behaviour were presented - none of which suggest that the different syntaxes make any difference at all - e.g. that changing any part of a query may cause a re-parse of the statement, or match a different stored outline. – Jeffrey Kemp Oct 8 '12 at 5:10
@JeffreyKemp those guys bullied me into deleting my own answer, which I believe is correct. sigh...... – shanyangqu Oct 8 '12 at 9:23
@shanyangqu: I don't see your deleted answer (normally I do see deleted answers on questions). Perhaps it was flagged as offensive for other reasons than mere incorrectness? – Jeffrey Kemp Oct 9 '12 at 6:11
@JeffreyKemp different thread. and it wasn't offensive. no need for that Jef stackoverflow.com/questions/12003127/oracle-operators – shanyangqu Oct 10 '12 at 7:43
show 2 more comments

There is no functional or performance difference between the two. Use whichever syntax appeals to you.

It's just like the use of AS and IS when declaring a function or procedure. They are completely interchangeable.

share|improve this answer
I didn't know you can interchange IS and AS. Thanks! – Luc M May 19 '11 at 23:02

They are the same, but i've heard people say that Developers use != while BA's use <>

share|improve this answer
3  
That's very funny! Real programmers use != – Adam Hawkes Nov 3 '10 at 20:42

As everybody else has said, there is no difference. (As a sanity check I did some tests, but it was a waste of time, of course they work the same.)

But there are actually FOUR types of inequality operators: !=, ^=, <>, and ¬=. See this page in the Oracle SQL reference. On the website the fourth operator shows up as ÿ= but in the PDF it shows as ¬=. According to the documentation some of them are unavailable on some platforms. Which really means that ¬= almost never works.

Just out of curiosity, I'd really like to know what environment ¬= works on.

share|improve this answer

Recently i met situation for this syntax and finally i found the below link.

http://www.dba-oracle.com/t_not_equal_operator.htm

If you use !=, it returns sub-second. If you use <>, it takes 7 seconds to return. Both return the right answer.

Also if you != only for String. - I am not sure. Correct me if am wrong.

share|improve this answer
1  
This should be a comment or ask a new question asking about your delay using <>. Post some test data and query in that case – Yaroslav Oct 5 '12 at 11:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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