---
title: Get the list of currently connected MySQL users
description: Show the list of connected users
doc_version: 1
last_updated: 2026-07-02
---


You can get the list of currently connected users on a MySQL database with:

``` 
❯ sqleton select --table information_schema.processlist --distinct --columns USER
+-------------------+
| USER              |
+-------------------+
| ttc_analytics_dev |
+-------------------+
```