DB_Column.!=
!=other
Group: Operators
Aliases: not equals
Documentation
Element-wise non-equality comparison.
Returns a column with results of comparing this column's elements against other
.
Arguments
other
: The value to compareself
against. Ifother
is a column, the comparison is performed pairwise between corresponding elements ofself
andother
.
Examples
Compare two columns for pairwise inequality.
import Standard.Examples
example_neq = Examples.integer_column != Examples.decimal_column
Compare a column with a number.
import Standard.Examples
example_neq = Examples.integer_column != 1
Errors
- If this operation results in comparing floating-point values for
equality which is not recommended, a
Floating_Point_Equality
warning is attached to the result.