mariadbHow to list users in Mariadb?
To list users in MariaDB, you can use the SELECT statement with the USER table.
SELECT User, Host FROM mysql.user;
This will output a list of users and their associated hosts.
Code explanation
SELECT- This is a SQL statement used to select data from a database.USER- This is the table in themysqldatabase that contains user information.User, Host- These are the columns from theUSERtable that will be selected.
Helpful links
More of Mariadb
- How to change wait_timeout in Mariadb?
- How to use the WITH clause in Mariadb?
- What type to use for a year in Mariadb?
- How to check version of Mariadb?
- How to use XA transactions in Mariadb?
- How to install Mariadb on Ubuntu?
- How to view Mariadb logs?
- Mariadb partitioning example
- How to get current year in Mariadb?
See more codes...