-- Cuantos hay de algo, cuanto suma algo... -- ¿Cuantas películas hay por categoría? -- funciones de agregado: count, sum, min, max, avg... -- La opción de agrupar por algo GROUP BY -- Cuantas películas hay por categoría select name, count(film_id) from category join film_category using(category_id) join film using (film_id) group by name; -- Cuantos actores tienen el mismo nombre select first_name, count(last_name) total from actor group by first_name; -- ¿Cuantos actores trabajan en cada película? select title, count(actor_id) num_actores from actor join film_actor using(actor_id) join film using(film_id) group by title ; -- ¿Cual es la película con más actores? select title, count(actor_id) num_actores from actor join film_actor using(actor_id) join film using(film_id) group by title order by num_actores desc limit 1; -- Total de pagos por cliente select first_name, last_name, sum(amount) total from customer join payment using (customer_id) group by customer_id