Re: How to filter a Window query?

2020-01-01 Thread Jason
I would use raw sql for this, since there's no direct support in the ORM for this. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

How to filter a Window query?

2020-01-01 Thread Tom J. Wassing
I am search for a solution to filter the results of a query which uses a window function. I would like to reduce the results set to only include the entries where the row number is smaller than 10. It is not supported by the ORM to filter directly on this query set