1.查看mysql中指定用户名密码
select host,user,password from mysql.user;//即可查看到用户和密码
2.修改密码
update mysql.user set password='这里填写你要设置的密码' where user='root';
3.查看指定用户权限
show grants for username@localhost;