Set the ORDER BY clause to the query
(self, clause: str)
| 71 | return self |
| 72 | |
| 73 | def order_by(self, clause: str) -> 'QueryBuilder': |
| 74 | ''' |
| 75 | Set the ORDER BY clause to the query |
| 76 | ''' |
| 77 | self._order_by = clause |
| 78 | return self |
| 79 | |
| 80 | def skip(self, n: int) -> 'QueryBuilder': |
| 81 | ''' |
no outgoing calls
no test coverage detected