cycquery.ops.LimitΒΆ class Limit(number)[source]ΒΆ Bases: QueryOp Limit the number of rows returned in a query. Parameters: number (int) β Number of rows to return in the limit. Examples >>> Limit(10)(table) Methods __call__(table)[source]ΒΆ Process the table. Parameters: table (Union[Select, Subquery, Table, DBTable]) β Table on which to perform the operation. Returns: Processed table. Return type: sqlalchemy.sql.selectable.Subquery