blob: fba65b036fd8e02f35ceb7fb8299c950be5fe16c (
plain)
1
2
3
4
5
6
7
8
|
create user foo@localhost;
select user,host,password from mysql.user where user='foo';
User Host Password
foo localhost
select user,host,password,plugin,authentication_string from mysql.user where user='foo';
User Host Password plugin authentication_string
foo localhost *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 mysql_native_password *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29
drop user foo@localhost;
|