Skip to content

Django QuerySet

  • A QuerySet is a collection of data from a database.
  • A QuerySet is built up as a list of objects.
  • QuerySets makes it easier to get the data you actually need, by allowing you to filter and order the data at an early stage.

In this tutorial we will be querying data from the Member table

Tip


Reference