Implement the ``!=`` operator. In a column context, produces the clause ``a != b``. If the target is ``None``, produces ``a IS NOT NULL``.
(self, other: Any)
| 584 | return self.operate(eq, other) |
| 585 | |
| 586 | def __ne__(self, other: Any) -> ColumnOperators: # type: ignore[override] |
| 587 | """Implement the ``!=`` operator. |
| 588 | |
| 589 | In a column context, produces the clause ``a != b``. |
| 590 | If the target is ``None``, produces ``a IS NOT NULL``. |
| 591 | |
| 592 | """ |
| 593 | return self.operate(ne, other) |
| 594 | |
| 595 | def is_distinct_from(self, other: Any) -> ColumnOperators: |
| 596 | """Implement the ``IS DISTINCT FROM`` operator. |