State true or false. !=, <>, ^= all denote the same operation.

True

Showing Answers 1 - 38 of 38 Answers

muthu

  • Sep 19th, 2005
 

true

  Was this answer useful?  Yes

Pushpendra Rana

  • Sep 26th, 2005
 

FALSE

  Was this answer useful?  Yes

balwant

  • Sep 28th, 2005
 

this is true

  Was this answer useful?  Yes

kk

  • Oct 4th, 2005
 

True.

Boss Pushpendra,answer only if u r sure.

Anuradha

  • Oct 13th, 2005
 

ans:

 false

Because: If we will consider only SQL operators  Only <> is the operator.

  Was this answer useful?  Yes

Sonu

  • Jan 10th, 2006
 

Its False because SQL supports operator is only <>

sonu

  • Jan 10th, 2006
 

Its true

  Was this answer useful?  Yes

Muthurp

  • Mar 24th, 2006
 

It is False. ^= does not work in SQL

vinnu

  • Oct 12th, 2006
 

This is True

  Was this answer useful?  Yes

Ravi Savaliya

  • Apr 6th, 2007
 

Only <> and != works for not equal sign , there is no operator like ^=

  Was this answer useful?  Yes

kvk817

  • Apr 24th, 2008
 

hey friends......
bee cool....if u knopw answer just tell other wise donot make rubbish to fool others...

see the statment;
select * from dept where dept != 20;
select * from dept where dept <> 20;
select * from dept where dept ^=20;
the query works for all

its true;;;;;;
byeeeeeeeeeeeeeeeeeeeeeeeeeeeee

SQL> Select 2+2 From dual Where 5 ^= 9; 2+2 ---------- 4

SQL> Select 2+2 From dual Where 5 <> 9; 2+2 ---------- 4

SQL> Select 2+2 From dual Where 5 != 9; 2+2 ---------- 4

SQL> Select 2+2 From dual Where 5 ^= 5; 2+2 ----------


Guys its TRUE....3 operators work the same way.....NOT EQUAL TO

  Was this answer useful?  Yes

Amit dass

  • Oct 28th, 2011
 

True

All Represent NOT EQUAL TO

Code
  1.  

  Was this answer useful?  Yes

Aashu

  • Feb 3rd, 2012
 

^= operator is a Bit wise Exclusive OR operater in MS SQL.
It stands into category of compound operators and performs a bitwise exclusive OR and sets the original value to the result.

  Was this answer useful?  Yes

Durgesh Kumar Singore

  • Feb 7th, 2012
 

In SQL 2005 only != and <> operator perform same operation

^= does not work

  Was this answer useful?  Yes

Guru

  • Dec 19th, 2012
 

True

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions