Changes between Initial Version and Version 1 of Ticket #32082
- Timestamp:
- Oct 7, 2020, 12:11:45 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32082 – Description
initial v1 2 2 3 3 Unless I'm missing something, it seems the only way to implement this is using the QuerySet `extra` method, and I'd like to avoid that. 4 5 Here is a [https://www.sqlite.org/rowvalue.html#scrolling_window_queries sqlite example of row values], btw: 6 7 {{{ 8 SELECT * FROM contacts 9 WHERE (lastname,firstname) > (?1,?2) 10 ORDER BY lastname, firstname 11 LIMIT 7; 12 }}} 13