Book.objects.filter(title__contains="星").sort("title")
Book.objects.filter(title__contains="星").sort("-title")
I can never remember which one is ascending and which is descending.
| No hyphen (“title”) | With hyphen (“-title”) |
|---|---|
| Ascending | Descending |
| Smallest to largest | Largest to smallest |
| 1, 2, 3 | 10, 9, 8 |
| a, b, c | z, y, x |
| あ、い、う | ん、を、わ |
| 2020/01/01, 2020/02/01 | 2024/12/01, 2024/11/01 |