I am using mySQL on Mac OS. I log in to mySQL using the command
mysql - u root
then run the command below
select a user from mysql.user;
It shows the table below
+---------+ | User | +---------+ | root | | root | | | | root | | | | gerrit2 | | root | +---------+ 7 rows in set (0.08 sec)
I do not understand that there are 4 lines with a root, and 2 lines do not have a name. Please explain me. Thanks!
source share