Possible Duplicate:
Oracle <> , != , ^= operators
in sql, what is the difference between <>
and !=
, we can use both for "NOt Equal to
".
is there any difference in between them?
ex.
select * from student where no != 2;
&
select * from student where no <> 2;
is any advantage of using one insted of another?
What are the main factors because of which !=
is not made as ISO standard