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 Respostas
+ 2
Something like:
SELECT actorName, Count(movieid)
FROM actors
Group by actorName;
- 1
omg. thank you đ