Changes between Initial Version and Version 1 of Ticket #32082


Ignore:
Timestamp:
Oct 7, 2020, 12:11:45 PM (4 years ago)
Author:
Esteban C Borsani
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32082 – Description

    initial v1  
    22
    33Unless 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
     5Here is a [https://www.sqlite.org/rowvalue.html#scrolling_window_queries sqlite example of row values], btw:
     6
     7{{{
     8SELECT * FROM contacts
     9 WHERE (lastname,firstname) > (?1,?2)
     10 ORDER BY lastname, firstname
     11 LIMIT 7;
     12}}}
     13
Back to Top