Why does MySQL/MariaDB allow SELECT COUNT(DISTINCT NAME, SURNAME) FROM PEOPLE, but doesn't allow SELECT COUNT(ALL NAME, SURNAME) FROM PEOPLE?
I tried to look up the syntax of COUNT between the documentation of MariaDB and MySQL but all I got is COUNT(expr), the problem is that I found nothing on expr. Can someone tall me what expr stands for?
