blob: 1ddb054c0928a12be21090ebde3051fb5dbc6461 (
plain)
1
2
3
4
5
6
|
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';
|