Skip to content
Advertisement

How can I translate SQL query to to django ORM

I’m working on making some data consults in Django but I don’t understand quite well its ORM system yet. I need to get the transactions’ quantity for a particularly transaction’s projections. To put it briefly, I want to translate this SQL query to Python/Django syntax:

JavaScript

These are the models involved:

JavaScript

Advertisement

Answer

You do this with an [.annotate(…) clause [Django-doc]]:

JavaScript

The Projection objects that arise from this queryset will have an extra attribute .total that contain the number of Transactions.

Advertisement