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 themysql
database that contains user information.User, Host
- These are the columns from theUSER
table that will be selected.
Helpful links
More of Mariadb
- What type to use for a year in Mariadb?
- How to work with XML in Mariadb?
- How to use variables in Mariadb?
- Mariadb procedure example
- How to get current year in Mariadb?
- How to get yesterday's date in Mariadb?
- How to change wait_timeout in Mariadb?
- How to use XA transactions in Mariadb?
- How to use xtrabackup in Mariadb?
See more codes...