A synonym for the :meth:`_sql.Select.where` method.
(self, *criteria: _ColumnExpressionArgument[bool])
| 5628 | return cols[0].type |
| 5629 | |
| 5630 | def filter(self, *criteria: _ColumnExpressionArgument[bool]) -> Self: |
| 5631 | """A synonym for the :meth:`_sql.Select.where` method.""" |
| 5632 | |
| 5633 | return self.where(*criteria) |
| 5634 | |
| 5635 | if TYPE_CHECKING: |
| 5636 |