is used most of the time to get metrics about queries and connections. But it can also provide other very useful information.
Performance_Schema
So today, I will show you how you can see a list of users that didn’t connect to MySQL since we restarted it (since last reboot).
SELECT DISTINCT mu.user FROM mysql.user mu
LEFT JOIN performance_schema.users psu
ON mu.user = psu.user
WHERE psu.user IS NULL
AND mu.user NOT IN ('mysql.infoschema', 'mysql.session', 'mysql.sys')
ORDER BY mu.user;
Example:
mysql> SELECT DISTINCT mu.user FROM mysql.user mu
-> LEFT JOIN performance_schema.users psu
-> ON mu.user = psu.user
-> AND mu.user NOT IN ('mysql.infoschema', 'mysql.session', 'mysql.sys')
-> WHERE psu.user IS NULL ORDER BY mu.user;
+------------------+
| user |
+------------------+
| fred |
| myuser |
+------------------+
2 rows in set (0.00 sec)
