Skip to content

Instantly share code, notes, and snippets.

@martineg
Last active August 29, 2015 13:56
Show Gist options
  • Save martineg/9049447 to your computer and use it in GitHub Desktop.
Save martineg/9049447 to your computer and use it in GitHub Desktop.
mysql snippets
-- connections per database
select db, count(db) as connections
from information_schema.processlist group by(db) order by connections desc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment