首先登陆数据库:
然后创建一个数据库: create database 数据库名称 character set utf8;
再创建一个新的用户: create user 用户名 identified by '密码';
最后授权数据库给新建用户: grant all on 数据库.* to 用户名;
首先登陆数据库:
然后创建一个数据库: create database 数据库名称 character set utf8;
再创建一个新的用户: create user 用户名 identified by '密码';
最后授权数据库给新建用户: grant all on 数据库.* to 用户名;