mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
6 lines
185 B
Text
6 lines
185 B
Text
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';
|