Created
August 26, 2014 11:59
-
-
Save gingerjoos/d3eadfb4ff936f61c861 to your computer and use it in GitHub Desktop.
An example of the Django queryset - 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
big_cities = Cities.objects.filter(population__gte=100).filter(size__gte=10) | |
big_canadian_cities = big_cities.filter(country='CA') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment