-4
Good night Devs,
I need to take each actor_id and film_id and check which total of movies(filme_id) has linked to actor_id and this I got : SELECT actor_id, COUNT(film_id) from film_actor group by actor_id;
After that and what is my doubt now, is to take the first_name and actor_id of the actor table and compare with the ID of the film_actor table
I am using the Sakilla Database that comes with Mysql Workbench
-
The teacher’s task: Select the first name (first_name) and the total number of films that each actor/actress (actor) is associated with(a) (use COUNT and GROUP BY). (0,3)