Django is a framework to create web applications. This tag should be used on question about using Django's ORM to query a database.
1
vote
1answer
27 views
Django Model Optimization
Class Model(models.Model):
.......
.......
.......
.......
first_name = models.CHarField(max_length = 50)
last_name = models.CharField(ma_lenghth = 50)
def full_name():
...
2
votes
2answers
28 views
How is `exact` lookup different from `equal` lookup in Django
How is exact lookup diffferent from equal lookup in Django
I have two queries
Blog.objects.get(title=title)
Blog.objects.get(title__exact=title)
What is the difference between these two?
1
vote
1answer
18 views
Django raw Query aggreation function
I need to write django raw query function to get the sum value and then write to the csn file.
I write my query
for time in Tracking_details.objects.raw('SELECT *,sum=SUM(work_time) FROM ...
0
votes
0answers
30 views
Django: get the first object from groups
In Django I`m getting my advertisement objects with the following queryset:
ads = ads.objects.filter(id=ad_id)
My MySQL ADS table have n ads grouped by an external_id that identifies where it was ...
0
votes
2answers
18 views
Django Models Create a Coustom Query
I am trying to get all the post in a thread before or on a certain time. So how do I get Django to allow me the privilege to enter my own queries?
This is the closes I could come using Django's model ...
0
votes
1answer
39 views
optimizing no. of queries being fired in django orm for a given model
I have an object, that is uploaded by the user, it contains several details, but for the sake of clarity, can be simply defined by the following model representation -
After this other users can ...
0
votes
1answer
20 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
1answer
20 views
Django Foreign key query
I have the following modle
class PatientContact(models.Model):
uid = models.CharField(max_length=10)
name = models.CharField(max_length=100)
phone = PhoneNumberField()
class ...
0
votes
2answers
40 views
Django - querying all models that have common fields
If I have many Django models - all with the following common fields: -
created_by = models.ForeignKey(User)
modified_by = models.ForeignKey(User)
and I would like to query all models to find out ...
0
votes
1answer
16 views
Django-Simple-Friends all users not connected as friends
I'm tyring to create a list of users who could be invited with Django-Simple-Friends
I would like the list to include all active users minus the logged in user and all the logged in user's friends.
...
0
votes
0answers
23 views
Querying django for a subset of objects based on a foreign key's foreign keys
Model
I am using a series of generic properties (for example the GenericValueProperty - a property with a numeric value) which represent a number of different properties that can be associated with a ...
0
votes
1answer
17 views
Sort Parent by Child MAX in Django Model relationship
I don't know how to best explain my actual issue so here's something completely analogous. Auction listings and their bids.
class Auction(models.Model):
name = models.CharField(...)
class ...
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
26 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
0answers
21 views
Django bus timetable query - sum durations and add to a departure time
I've written some Django models and loaded some data for a bus timetable system but am having trouble with writing a query. Here are the models:
class VehicleJourney(models.Model):
...
0
votes
1answer
9 views
Django query based on ManyToManyField
I am new to Python and Django.
I am trying to build myself very simple blog application.
So I have this 2 models :
class Tag(models.Model):
name = models.CharField(max_length=250)
slug = ...
3
votes
2answers
60 views
Django query with simple arithmetic among model fields and comparison with field from another model
(All code below is a simplified representation of the actual code).
If I have the following Django models: -
class Material(models.Model):
name = models.CharField(max_length=110)
class ...
1
vote
2answers
63 views
django - queryset order_by field that has characters and integers
I have a model that has a field (lets call it this_field) which is stored as a string. The values in this_field are in the form Char### - as in, they have values such as: A4 or A34 or A55 (note that ...
1
vote
2answers
64 views
Django reverse to contains/icontains
In this question was solved problem for reverse LIKE operation in SQL, for example if field name is "Peter Johnson", we could find it by such query:
select name from user where "Mr. Peter Johnson" ...
0
votes
1answer
52 views
How to find the name of the user with whom the file is shared?
I have a file, user and share models like this:
class File(models.Model):
users = models.ForeignKey(User)
file_name = models.CharField(max_length=100)
type = ...
0
votes
1answer
62 views
How to convert this MySQL query to a Django query?
I have a query like this:
select files_id, count(DISTINCT shared_user_id) FROM fileupload_share GROUP BY files_id;
which I want to convert in Django query. Tried like this:
count = ...
0
votes
2answers
40 views
Count number of shared users to the given file in django?
I have a table called share like this:
+----+----------+----------+----------------+----------------------------------+
| id | users_id | files_id | shared_user_id | shared_date ...
0
votes
1answer
41 views
Django annotate fails when querying unique values
for a Django project I need to combine two parts lists into one.
models.py:
class UserBuild(models.Model):
project = models.ForeignKey(Project)
created = ...
0
votes
2answers
68 views
django optimize merging querysets
For example, I have 2 querysets(it's just a dummy code):
q1=MyModel.objects.filter(visible=True)
q2=MyModel.objects.filter(published=True)
And i need to make single queryset or list having all ...
1
vote
1answer
42 views
How i can show list of objects that have no related object?
I have a problem with django query. I'm new django programmer.
I have three models:
class Device(models.Model):
class Meta:
ordering = ('dev',)
verbose_name = _(u'Interface')
...
0
votes
1answer
90 views
Django many to many query with null form and model values
I have the below model structure, where each Tradesman has a many-to-many relationship with two attributes; Language and Discipline. In the form, a user can select a subset of Tradesman by filtering ...
0
votes
1answer
39 views
How to query most recent record across multiple tables in django
I have two models that look like this:
class Node(models.Model):
user = models.ForeignKey(User, null=False)
name = models.CharField(max_length=50)
class Activation(models.Model):
node = ...
2
votes
1answer
110 views
Django reverse query by the last created object
I have two models:
class SomeActivity(models.Model):
name = models.ChartField(max_length=100)
class SomeStatus(models.Model):
name = models.CharField(max_length=100)
status = ...
0
votes
3answers
43 views
Many to many and how to get a queryset from queryset
I have following models:
class Store(models.Model):
name = CharField(max_length=30)
product = models.ManyToManyField(Product)
class Product(models.Model):
name = CharField(max_length=30)
...
0
votes
0answers
16 views
How to use this queryset in the template?
I want to count the person with whom the file is shared. For example if the file ok.txt is shared with 2 people I want to show the file_information and show the value of shared_with coloumn 2. I do ...
0
votes
1answer
42 views
How to count number number of users with whom the file is shared in Django?
I have two models like this:
class File(models.Model):
users = models.ForeignKey(User)
file_name = models.CharField(max_length=100)
type = models.CharField(max_length=10)
source = ...
0
votes
2answers
56 views
Issues with arrays and while loop in python
I am fetching the data from raw sql query in django, But I got confused with arrays and while loop in this. Suppose my select query returns 4 rows , 2 rows for one user thus four rows will have the ...
0
votes
1answer
97 views
issues with raw MySQL queries in django
I am using Django raw sql queries for fetching data from database using joins and alias names
My query:
SELECT DISTINCT
A.entity_id AS entity_id,
A.email AS email,
A.catquizid AS ...
0
votes
1answer
29 views
Django query that requires grouping and aggregating
I'm trying to do this query in django and I'm not sure what the best way to do it is. I neeed to group and then count and order by that count...
I have a through model like:
...
0
votes
1answer
34 views
django values not working
When I try to call values with more than 3 fields it seems to 'break' (ie. it doesn't group duplicate entries together)
My model is a through model with three fields, 2 FK and one timestamp
...
0
votes
3answers
313 views
Django QuerySet get_or_create - TypeError - save() got an unexpected keyword argument 'using'
I have an error using get_or_create on a queryset: "TypeError at ... save() got an unexpected keyword argument 'using' ". I'm using django 1.4.3, but looking around i found that those problems were ...
-1
votes
1answer
158 views
django queries filter select related
The person here is a person object returned from the request
PersonAddressBook.objects.select_related().get(person = person).client
The code above returns client object how can i rewrite it to ...
0
votes
2answers
54 views
Django query inclusive of Foreign Attributes
I have this model class:
class question(models.Model):
id = models.CharField(max_length=64, primary_key=True,null=False)
paper_id = models.ForeignKey(paper,null=True)
question_no = ...
2
votes
3answers
52 views
How would I do this query in Django?
So let's say I have three models: User, CarBrand, CarModel, CarCharacteristics. The CarCharacteristics model describes how a user rates the characteritics of a car. So there can be many ...
0
votes
2answers
55 views
Can't figure out join statement in Django
n00b question here but I'm trying to figure out how to execute the following sql join statement in Django without resorting to just raw sql. Is there a way to do it?
Select * from playertable, ...
5
votes
2answers
247 views
How to use subquery in django?
I want to get a list of the latest purchase of each customer, sorted by the date.
The following queryset does what I want except for the date:
...
1
vote
1answer
77 views
Django queries spanning foreign key
I have the following models:
class Collection(models.Model):
# some fields here ...
class Entry(models.Model):
collection = models.ForeignKey(Collection, reverse_name="entries")
...
0
votes
2answers
127 views
Django custom queryset sort by two fields
I need to sort a queryset for a Django admin change list view by two different factors: order_time and status.
When sorted the resulting queryset should be ordered by decreasing order_time with all ...
0
votes
1answer
28 views
Django determine “most popular”
Given this somewhat simplified representation of my application's models, my question is how do I globally find the most popular MyModel? I.e., those MyModels are favorited the most by MyUsers.
I've ...
1
vote
2answers
84 views
Django ManyToMany filtering by set size or member in the set
I am using django to maintain a database of messages.
Among others I have the following models:
class User(models.Model):
id = models.IntegerField(primary_key=True)
name = ...
1
vote
1answer
59 views
Django Annotate issue
I wish to do an SQL-like "Group by, Count" on django. Here are my current progress of the code:
tags = tag.objects.values('tag').annotate(Count('tag')).order_by()
Class for tag:
class ...
0
votes
3answers
75 views
neutral element for “|” and “&” operations for django.db.models.Q objects?
What is the neutral element for django.db.models.Q objects for "|" operation? I'd like to generate a filter with a function:
MyModel.objects.filter(myfunc(args)) where myfunc should give something ...
0
votes
2answers
47 views
How can I build a query in django using an iterator?
How can I build a complex query in django using an iterator? Actually, I feel this could be more of "basic python" than django, but it's got me stumped.
Essentially, I want to take a list object and ...
0
votes
1answer
43 views
How to find object with highest number of an attribute
For example lets say I have a model named "ClassRoom" and a model named "Student" and Student has a foreign key relationship with ClassRoom.
Class Student(models.Model):
classroom = ...
1
vote
2answers
149 views
Django Query: join a table 2 times
I have 2 tables:
Product(id, name)
Attribute(id, product_id, name, value)
How can I join the table "Attribute" 2 times when searching products? They must be in one query because of paging later.
...
