Django querysets are the primary abstraction for retrieving objects from django's ORM system
1
vote
1answer
22 views
django efficient way to combine 2 queries or make a compound one?
my (simplified) models are like this:
class Story(models.Model):
wikiedit = models.BooleanField(default=False)
writers = models.ManyToManyField(User,null=True,blank=True)
class ...
0
votes
2answers
25 views
QuerySet, Object has no attribute id - Django
I'm trying to fetch the id of certain object in django but I keep getting the following error
Exception Value: QuerySet; Object has no attribute id.
my function in views.py
@csrf_exempt
def ...
-1
votes
1answer
26 views
django queryset runtime - get nth entry in constant time
I'm using multiple ways to get data from db via different django querysets,
but I would like to know the runtime for each queryset and if possible a better way (to maybe get data in constant time!!)
...
-2
votes
1answer
55 views
Select only latest results for every unique foreign key [closed]
class Price(models.Model):
product = models.ForeignKey(Product)
date = models.DateField()
amount = DecimalField()
Have model where stored amounts for many products on many date(date may ...
0
votes
1answer
21 views
Django Filter by latest related object
I've setup a system to track moderation tasks for various objects in the database. These are linked via a Generic Foreign Key relation. Given a ObjectModerationState Object I must determine its state ...
0
votes
1answer
28 views
Use django count or values_list counter, which is better?
I write a view for exporting data, my model is like this:
class Event(models.Model):
KIND_CHOICES = (('doing', 'doing'),
('done', 'done'),
('cancel', ...
1
vote
1answer
22 views
QuerySet confusion in Django Admin
Very new to Django/Python, and I've hit a brickwall after reading tons of documentation and posts regarding this issue...
So I'm working on a simple Django app that has a SQLlite database/table of ...
1
vote
0answers
27 views
Variable interpolation in python/django, django query filters [duplicate]
Here is an example query taken from the Django API.
Blog.objects.filter(name__startswith='Beatles')
How would I programmatically replace "name" in the filter above? If I were ...
0
votes
1answer
35 views
django query to use annotate with a filter for each annotations
I have the following database model -
class ObjectDetail(models.Model):
title = models.CharField()
img = models.ImageField()
description = models.TextField()
uploaded_by = ...
0
votes
1answer
24 views
Django QuerySet.extra() and PostgreSQL age() function
I'm trying to write a filter in Django where I first filter the queryset and then I'd like to again filter it with the following SQL-statemnet:
SELECT * FROM user,
(select EXTRACT(year FROM ...
1
vote
2answers
37 views
Django: Limit QuerySet to user input (checkboxes)
My question is similar to Django Advanced Filtering but I need another approach:
Abstract:
Tables: manufacturer, supplies
Manufacturers have multiple supplies (1 or 0 in "supply" table)
I have a ...
2
votes
2answers
37 views
Django: filtering queryset by 'field__isnull=True' or 'field=None'?
I have to filter a queryset by a dynamic value (which can be None): may I simply write:
filtered_queryset = queryset.filter(field=value)
or shall I check for None:
if value is None:
...
0
votes
1answer
24 views
Queryset filter/excludes for dates
I have an event + dates type table design.
Class Event
...
Class EventDate
...
date = models.DateField()
event = model.ForeignKey(Event)
class Meta:
unique_together = ('date', ...
1
vote
1answer
38 views
django queryset to get average of a group
This is kind of tricky!
I have a db that keeps track of each users download usages in KB, of every hour(24 entry per day);
looks like this..
user timestamp usage
user1 2013-0501 14:00:00 229
...
2
votes
1answer
35 views
Django queryset get exact manytomany lookup [duplicate]
I have a pk list of instances of Tag model, say
pk_list = [10, 6, 3]
I have another model with m2m field of tags and an instance that contains exactly 3 tags (of above pks).
class ...
1
vote
2answers
39 views
django complex queryset annotation
I want to add to a queryset some statistic data calculated at each user's page request to display in a large table. The annotate method might be the best choice but I'm stuck at merging created ...
0
votes
1answer
19 views
Reference subquery field for greater than clause in django
I have a query that I can do with raw sql but am trying to convert it to use the Django ORM. The query is:
SELECT a.journey_pattern_ref_id
FROM(
SELECT * FROM journeypatterntiminglink
...
0
votes
0answers
10 views
sending data through django template for filtering
I'm passing a queryset to a Django template, and I have a price filter, so I want that when a users selects a price range (minPrice,maxPrice), I send these values along with my queryset to a Django ...
1
vote
1answer
36 views
Django add friends to query
I'm trying to create a query where I retrieve all the "activity" for the logged in user and his "friends" sorted by most recent. (friends are connected using Django-Simple-Friends).
The following ...
0
votes
0answers
33 views
Django template: Looping through query_set and dictionary at the same time (or combining them)?
If I have a queryset called Fruit, whose model is something like:
class Fruit(model.Models)
name = models.CharField()
producer = models.ForeignKey(Producer)
In my view, I have a dynamically ...
2
votes
1answer
36 views
How to modify a queryset and save it as new objects?
I need to query for a set of objects for a particular Model, change a single attribute/column ("account"), and then save the entire queryset's objects as new objects/rows. In other words, I want to ...
0
votes
2answers
71 views
What is the django equivalent of this SQL query?
I am very new to django and I am tryin to accomplish some repetitive tasks. I was wondering what would be the django equivalent of the following tasks.
I want to select all values that fall within a ...
0
votes
1answer
39 views
minimize number of Django Querysets to create json.dumps
First of all, thank you for your time and help :)
I created the model below and for sometime have been happily coding with Scenario 1 (Scenarios also below).
Now I started to use charts and need ...
4
votes
2answers
60 views
what does this operator means in django `reduce(operator.and_, query_list)`
I am reading this questions
Constructing Django filter queries dynamically with args and kwargs
I am not able to get what does this operator do
filter(reduce(operator.or_, argument_list))
or this
...
0
votes
2answers
25 views
How can i do the Q filter search based on dictionary and its keys in Django
Suppose i have this dictionary
mydict['number'] = {23,24,25}
mydict['name'] = {"john","mike","kaff"}
mydict['area'] = {"london", "usa", "japan"}
I already have the query set qs
But i want to have ...
1
vote
2answers
40 views
Django: Getting the value of an ordered queryset
I have a model,
class Book(models.Model):
name = models.CharField(max_length=300)
pages = models.IntegerField()
price = models.DecimalField(max_digits=10, decimal_places=2)
rating = ...
0
votes
0answers
38 views
How to use .extra with .annotate
I am trying to get a field in a queryset which depends on the result of the annotations. I tried using extra on an annotated queryset, which doesn't seem to work.
Lets say my models looks like this:
...
0
votes
1answer
26 views
Django — Updating specific values in a resulting queryset
What is wrong in these lines:
for i in message_list:
message_stream = Messages.objects.filter(OrderID = i.OrderID).order_by('-MessageLocalID')
if message_stream[0].MessageTypeName != ...
0
votes
0answers
25 views
Django - Order a field in a query that has mixed chars and digits
I need to do a normal query, but I need one field to be sorted. That field, however, has the form: CharXXXX, ei: one character, then anywhere from 1-4 digits. Something like A3 or A534 or B44.
Now, ...
0
votes
1answer
35 views
Django Queryset in forms
How can i make a queryset in this modelform. This is my code.
Class Sample(forms.ModelForm):
class Meta:
model = Customer
fields = ('name','address',)
widgets = ...
0
votes
3answers
58 views
Get first object from Django queryset
Given the following code:
randomItemQS = Item.objects.filter().exclude(id__in=[o.id for o in collection]).order_by('?')
randomItem = randomItemQS[:1]
calculation = randomItem.method() / constant
...
1
vote
2answers
36 views
get activity from my followers django
I have 3 models :
class UserProfile(models.Model):
slug = models.SlugField(max_length=200)
user = models.ForeignKey(User, unique =True)
relationships = models.ManyToManyField('self', ...
0
votes
1answer
26 views
Django exclude follower in query
I have 2 models, userProfile and relationship. Users can follow each other and the relation is made through the relationship model. Here is the code :
class UserProfile(models.Model):
slug = ...
1
vote
1answer
45 views
django return foreign key object from queryset?
So I have three models
class Post(....
class Project(....
# have a many to many relationship
class ProjectPost(....
post = ..... # foreignkey
project = .... # foreignkey
The data set I ...
0
votes
1answer
38 views
Django Cross Table Querysets
My model is defined as:
class Inventory(models.Model):
items = models.ManyToManyField(Item, blank=True)
scanned_items = models.ManyToManyField(Item, related_name='scanned_inventory_set', ...
0
votes
1answer
27 views
Django: Filtering on annotated value with gte integer results into comparison with True in SQL
I want to make QuerySet in Django which restricts teams to only those which have more than two active members. I have following UserProfile class in my models.py:
class UserProfile(models.Model):
...
-1
votes
2answers
71 views
order by condition Django
I have 3 models userprofile and group :
class UserProfile(models.Model):
slug = models.SlugField(max_length=200)
user = models.ForeignKey(User, unique =True)
professionalNetwork = ...
1
vote
2answers
78 views
many to many django sql
I have a model userprofile that as a manytomany relationship with another table called skill
I also have a model group that as a manytomany relationship with another table called skill
I would like ...
2
votes
1answer
31 views
Get around Tastypie ignoring queryset on ManyToMany query
I am having trouble getting Tastypie to behave properly with ManyToMany queries.
Here is a simplified version of my models.
class Buttons(models.Model):
name = models.CharField(max_length=255)
...
0
votes
2answers
50 views
django query - how to get latest row during distinct
this is my db RATING table where i want the last row of duplicate entries:
i did this:
bewertung = Rating.objects.filter(von_location=1).distinct('von_location')
but i am getting the first row ...
0
votes
2answers
32 views
django template changed date format from queryset
I created a queryset:
my_data = My_User.objects.filter(Q(first_name = 'John') |
Q(last_name = 'Doe'))
now one of the fields in my_data has date (type: ...
1
vote
4answers
86 views
Django sql order by
I'm really struggling on this one.
I need to be able to sort my user by the number of positive vote received on their comment.
I have a table userprofile, a table comment and a table likeComment.
The ...
1
vote
0answers
43 views
query Django for top users
I have to create an algorithm that gets the most popular users of my site.
I don't really know how to start.
I have to take in consideration :
- number of follower
- number of comment / topic posted
...
0
votes
1answer
32 views
Proper QuerySet query
I have two models in Django: one of them is a bunch of entries, and another model is a link table - it basically maps one entry to another, so it has a entry_a_id and an entry_b_id field... how do I ...
2
votes
2answers
49 views
Is there a way to get type of related field from a model queryset in Django?
Can I get type of related field from a model queryset?
Let consider example model:
class Semester(models.Model):
active = models.BooleanField(default=False, verbose_name="Active")
class ...
0
votes
0answers
25 views
queryset is returning cached result unless uWSGI or runserver is restarted in django
am using django 1.4, have developed a templatetag to use to render all used tags retrieving from a model. Below is the code i've used in the templatetag
class TrendingHashTagsNode(template.Node):
...
1
vote
2answers
76 views
complex annotate on django query set
I have an issue where I can't quite get all the information I need from a complex .annotate() call in my django view. Here's my model:
RECORD_STATUS = (
(0, "Hidden"),
(1, "Unhidden"),
...
0
votes
1answer
55 views
Filter Child rows in a Django Queryset
In a queryset I want to return a collection (by pk) and all Sales objects that have a status='ACTIVE'.
I have tried:
Collection.objects.filter(Sales__status="ACTIVE")
But I get back the ...
0
votes
1answer
33 views
How to manufacture Django ORM QueySet from existing data / get back to ORM queries from plain SQL?
My case:
In one place of my Django app I decided to use plain SQL, for optimization purpose - I was need a complex join, and Django ORM does not capable do such job. But use of plain SQL caused ...
0
votes
2answers
34 views
Django Count - filter the set being counted
I have this situation
class Video(models.Model):
public = models.BooleanField()
parent = models.ForeignKey('self', related_name='children')
I want to get a list of videos ordered by the ...




