" and is used to filter unequal values.">
The operator used to express inequality in Oracle is "!==", which is used to compare two values and return a Boolean value whether they are equal. The syntax is: expression1 != expression2. This operator can also be expressed as "<>" and is used to filter for unequal values.
Inequality operator in Oracle
In Oracle, the operator used to express inequality is "!==".
Usage
The "!==" operator compares two values and returns a Boolean value indicating whether they are not equal. The syntax is:
表达式1 != 表达式2
where "expression 1" and "expression 2" can be constants, variables, columns or expressions.
Examples
The following are some examples showing the use of the "!==" operator:
SELECT * FROM employees WHERE salary != 10000; SELECT product_name FROM products WHERE price != 15.99;
These queries will return items that satisfy the given All rows of the condition, that is, the employee's salary is not equal to 10,000, or the price of the product is not equal to 15.99.
Note
The "!==" operator is equivalent to the "<>" operator and can also be used to express inequality.
The above is the detailed content of How to write not equal in Oracle. For more information, please follow other related articles on the PHP Chinese website!