Produce a WITHIN GROUP (ORDER BY expr) clause against this function.
(
self, *order_by: _ColumnExpressionArgument[Any]
)
| 4993 | ) |
| 4994 | |
| 4995 | def within_group( |
| 4996 | self, *order_by: _ColumnExpressionArgument[Any] |
| 4997 | ) -> WithinGroup[_T]: |
| 4998 | """Produce a WITHIN GROUP (ORDER BY expr) clause against |
| 4999 | this function. |
| 5000 | """ |
| 5001 | return WithinGroup(self, *order_by) |
| 5002 | |
| 5003 | def within_group_type( |
| 5004 | self, within_group: WithinGroup[_T] |