all_(self) -> 'ColumnOperators' |
Produce an :func:`_expression.all_` clause against the [extrait de all_.__doc__] |
any_(self) -> 'ColumnOperators' |
Produce an :func:`_expression.any_` clause against the [extrait de any_.__doc__] |
asc(self) -> 'ColumnOperators' |
Produce a :func:`_expression.asc` clause against the [extrait de asc.__doc__] |
between(self, cleft: 'Any', cright: 'Any', symmetric: 'bool' = False) -> 'ColumnOperators' |
Produce a :func:`_expression.between` clause against [extrait de between.__doc__] |
bitwise_and(self, other: 'Any') -> 'ColumnOperators' |
Produce a bitwise AND operation, typically via the ``&`` [extrait de bitwise_and.__doc__] |
bitwise_lshift(self, other: 'Any') -> 'ColumnOperators' |
Produce a bitwise LSHIFT operation, typically via the ``<<`` [extrait de bitwise_lshift.__doc__] |
bitwise_not(self) -> 'ColumnOperators' |
Produce a bitwise NOT operation, typically via the ``~`` [extrait de bitwise_not.__doc__] |
bitwise_or(self, other: 'Any') -> 'ColumnOperators' |
Produce a bitwise OR operation, typically via the ``|`` [extrait de bitwise_or.__doc__] |
bitwise_rshift(self, other: 'Any') -> 'ColumnOperators' |
Produce a bitwise RSHIFT operation, typically via the ``>>`` [extrait de bitwise_rshift.__doc__] |
bitwise_xor(self, other: 'Any') -> 'ColumnOperators' |
Produce a bitwise XOR operation, typically via the ``^`` [extrait de bitwise_xor.__doc__] |
collate(self, collation: 'str') -> 'ColumnOperators' |
Produce a :func:`_expression.collate` clause against [extrait de collate.__doc__] |
concat(self, other: 'Any') -> 'ColumnOperators' |
Implement the 'concat' operator. [extrait de concat.__doc__] |
contains(self, other: 'Any', **kw: 'Any') -> 'ColumnOperators' |
Implement the 'contains' operator. [extrait de contains.__doc__] |
desc(self) -> 'ColumnOperators' |
Produce a :func:`_expression.desc` clause against the [extrait de desc.__doc__] |
distinct(self) -> 'ColumnOperators' |
Produce a :func:`_expression.distinct` clause against the [extrait de distinct.__doc__] |
endswith(self, other: 'Any', escape: 'Optional[str]' = None, autoescape: 'bool' = False) -> 'ColumnOperators' |
Implement the 'endswith' operator. [extrait de endswith.__doc__] |
icontains(self, other: 'Any', **kw: 'Any') -> 'ColumnOperators' |
Implement the ``icontains`` operator, e.g. case insensitive [extrait de icontains.__doc__] |
iendswith(self, other: 'Any', escape: 'Optional[str]' = None, autoescape: 'bool' = False) -> 'ColumnOperators' |
Implement the ``iendswith`` operator, e.g. case insensitive [extrait de iendswith.__doc__] |
ilike(self, other: 'Any', escape: 'Optional[str]' = None) -> 'ColumnOperators' |
Implement the ``ilike`` operator, e.g. case insensitive LIKE. [extrait de ilike.__doc__] |
in_(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``in`` operator. [extrait de in_.__doc__] |
is_(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``IS`` operator. [extrait de is_.__doc__] |
is_distinct_from(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``IS DISTINCT FROM`` operator. [extrait de is_distinct_from.__doc__] |
is_not(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``IS NOT`` operator. [extrait de is_not.__doc__] |
is_not_distinct_from(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``IS NOT DISTINCT FROM`` operator. [extrait de is_not_distinct_from.__doc__] |
isnot(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``IS NOT`` operator. [extrait de is_not.__doc__] |
isnot_distinct_from(self, other: 'Any') -> 'ColumnOperators' |
Implement the ``IS NOT DISTINCT FROM`` operator. [extrait de is_not_distinct_from.__doc__] |
istartswith(self, other: 'Any', escape: 'Optional[str]' = None, autoescape: 'bool' = False) -> 'ColumnOperators' |
Implement the ``istartswith`` operator, e.g. case insensitive [extrait de istartswith.__doc__] |
like(self, other: 'Any', escape: 'Optional[str]' = None) -> 'ColumnOperators' |
Implement the ``like`` operator. [extrait de like.__doc__] |
match(self, other: 'Any', **kwargs: 'Any') -> 'ColumnOperators' |
Implements a database-specific 'match' operator. [extrait de match.__doc__] |
not_ilike(self, other: 'Any', escape: 'Optional[str]' = None) -> 'ColumnOperators' |
implement the ``NOT ILIKE`` operator. [extrait de not_ilike.__doc__] |
not_in(self, other: 'Any') -> 'ColumnOperators' |
implement the ``NOT IN`` operator. [extrait de not_in.__doc__] |
not_like(self, other: 'Any', escape: 'Optional[str]' = None) -> 'ColumnOperators' |
implement the ``NOT LIKE`` operator. [extrait de not_like.__doc__] |
notilike(self, other: 'Any', escape: 'Optional[str]' = None) -> 'ColumnOperators' |
implement the ``NOT ILIKE`` operator. [extrait de not_ilike.__doc__] |
notin_(self, other: 'Any') -> 'ColumnOperators' |
implement the ``NOT IN`` operator. [extrait de not_in.__doc__] |
notlike(self, other: 'Any', escape: 'Optional[str]' = None) -> 'ColumnOperators' |
implement the ``NOT LIKE`` operator. [extrait de not_like.__doc__] |
nulls_first(self) -> 'ColumnOperators' |
Produce a :func:`_expression.nulls_first` clause against the [extrait de nulls_first.__doc__] |
nulls_last(self) -> 'ColumnOperators' |
Produce a :func:`_expression.nulls_last` clause against the [extrait de nulls_last.__doc__] |
nullsfirst(self) -> 'ColumnOperators' |
Produce a :func:`_expression.nulls_first` clause against the [extrait de nulls_first.__doc__] |
nullslast(self) -> 'ColumnOperators' |
Produce a :func:`_expression.nulls_last` clause against the [extrait de nulls_last.__doc__] |
regexp_match(self, pattern: 'Any', flags: 'Optional[str]' = None) -> 'ColumnOperators' |
Implements a database-specific 'regexp match' operator. [extrait de regexp_match.__doc__] |
regexp_replace(self, pattern: 'Any', replacement: 'Any', flags: 'Optional[str]' = None) -> 'ColumnOperators' |
Implements a database-specific 'regexp replace' operator. [extrait de regexp_replace.__doc__] |
startswith(self, other: 'Any', escape: 'Optional[str]' = None, autoescape: 'bool' = False) -> 'ColumnOperators' |
Implement the ``startswith`` operator. [extrait de startswith.__doc__] |
Améliorations / Corrections
Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.
Emplacement :
Description des améliorations :