mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
7 lines
185 B
Plaintext
7 lines
185 B
Plaintext
use mysql;
|
|
create user 'test'@'localhost';
|
|
select user, host, is_role from user where user='test' and host='localhost';
|
|
user host is_role
|
|
test localhost N
|
|
drop user 'test'@'localhost';
|