Contenido del Curso
Django ORM Ninja: Técnicas Avanzadas para Desarrolladores
Django ORM Ninja: Técnicas Avanzadas para Desarrolladores
Aggregations
Do you remember that aggregations in SQL are used to compute a single result from a set of input values. Let's remind some common aggregation functions: COUNT, SUM, AVG, MAX, MIN.
At the same time, Aggregation in Django ORM is a powerful tool to perform calculations over query sets, enabling you to summarize or analyze data efficiently. It allows for operations like counting, averaging, summing, etc., across a set of records.
Basic Aggregation Examples
This query counts how many books each author has written.
Complex Aggregation
Finds the latest publication date for each author.
Aggregation with Filters
Aggregates the total pages of all books in the 'Fantasy' genre.
¡Gracias por tus comentarios!