Tons of mysql processes, but see no queries

Hello,

when i run htop command i see alot of mysql processes like this:

But when i run command “mysqladmin processlist” i see usually nothing…

[root@* ~]# mysqladmin processlist
±-------±-----±----------±----±--------±-----±------±-----------------+
| Id | User | Host | db | Command | Time | State | Info |
±-------±-----±----------±----±--------±-----±------±-----------------+
| 455317 | hqs | localhost | hqs | Sleep | 3 | | |
| 455320 | hqs | localhost | hqs | Sleep | 0 | | |
| 455321 | root | localhost | | Query | 0 | | show processlist |
±-------±-----±----------±----±--------±-----±------±-----------------+

so i want to ask how can i track what are these mysql processes that i see in htop, so i see which db and which table is used?

Mysql – like most server apps – will keep a bunch of processes running to react to incoming requests so you don’t need to spin one up to respond to a query.