class DeprecatedSelectBaseGenerations(object):
Known subclasses: sqlalchemy.sql.selectable.GenerativeSelect
_sql.Select
and
_sql.CompoundSelect
, these are all deprecated methods as they
modify the object in-place.Method | append_group_by |
Append the given GROUP BY criterion applied to this selectable. |
Method | append_order_by |
Append the given ORDER BY criterion applied to this selectable. |
Append the given GROUP BY criterion applied to this selectable.
The criterion will be appended to any pre-existing GROUP BY criterion.
This is an in-place mutation method; the
_expression.GenerativeSelect.group_by
method is preferred,
as it
provides standard :term:`method chaining`.
Append the given ORDER BY criterion applied to this selectable.
The criterion will be appended to any pre-existing ORDER BY criterion.
This is an in-place mutation method; the
_expression.GenerativeSelect.order_by
method is preferred,
as it
provides standard :term:`method chaining`.
See Also
_expression.GenerativeSelect.order_by