Django querysets are the primary abstraction for retrieving objects from Django's ORM system
Django querysets are the primary abstraction for retrieving objects from Django's ORM system using custom SQL queries. They abstract both the creation of queries as well as the assembly of the model objects that are returned.
See also