-
Junior Member
Operators in SQL
!=, <>, ^=
In SQL, do all these operators do the same thing? Please explain your answer.
-
Junior Member
Re: Operators in SQL
Yes, all of them work in ORACLE.
why don't you try it on your own?
Patrick.
-
Contributing Member
Re: Operators in SQL
The operator used in SQL for not equal is only <>. The syntax for that is
Formula1 <> Formula2
Explanation:
Is TRUE when the value at the left side of the operator is not equal to the value at the right side?
Example:
SELECT s1, s2, s3
FROM table1
WHERE s1 <> 0;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules