Hi, @Franck Nsungu Lukanda Welcome to Microsoft Q&A Thanks for posting your query.
Can you please try as below, comma is missing after first_name.
select last_name, first_name,
count (*)
from actor
group by last_name,
first_name
order by 3 desc
Regards
Geetha