I use mySQL on Mac OS. I login mySQL by the command
mysql - u root
then run the command below
select User from mysql.user;
It show the table below
+---------+
| User |
+---------+
| root |
| root |
| |
| root |
| |
| gerrit2 |
| root |
+---------+
7 rows in set (0.08 sec)
I don't understand that there're 4 rows has root and 2 rows has no name. Please explain me. Thank you!