0
What’s the answer..
Create a list of actors and the number of movies by each actor ???? this’s will be work with the sakila MySQL database...
2 Respuestas
+ 2
Something like:
SELECT actorName, Count(movieid)
FROM actors
Group by actorName;
- 1
omg. thank you 💓