查看所有用户信息:
    用户名,允许登录的地址,密码(被加密)
    select user,host,authentincation_string from mysql.user;
    创建用户:
    create user mynaive@'localhost';
    创建用户的同时创建密码:
    create user mynaive1@'localhost' identified by 'mypass';