1 Answer
To see the host details database user and database details they accessed use the below command
show processlist;
Or if you simply wanted to see the threads connected alone run the following command
SHOW STATUS WHERE `variable_name` = 'Threads_connected';
Your Answer