Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

what is queryset in django

what is queryset in django?

A QuerySet represents a collection of objects from your database. 
It can have zero, one or many filters. 
Filters narrow down the query results based on the given parameters. 
In SQL terms, a QuerySet equates to a SELECT statement, and a filter is a limiting clause such as WHERE or LIMIT.
Source by docs.djangoproject.com #
 
PREVIOUS NEXT
Tagged: #queryset #django
ADD COMMENT
Topic
Name
6+4 =