2015-10-22 07:23:59 +02:00
|
|
|
create user foo@localhost;
|
|
|
|
select user,host,password from mysql.user where user='foo';
|
2018-11-24 14:13:41 +01:00
|
|
|
User Host Password
|
2015-10-22 07:23:59 +02:00
|
|
|
foo localhost
|
2018-10-14 13:52:52 +02:00
|
|
|
select user,host,password,plugin,authentication_string from mysql.user where user='foo';
|
2018-11-24 14:13:41 +01:00
|
|
|
User Host Password plugin authentication_string
|
|
|
|
foo localhost *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 mysql_native_password *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29
|
2015-10-22 07:23:59 +02:00
|
|
|
drop user foo@localhost;
|