CREATE DATABASE IF NOT EXISTS 数据库名称;
2.新增用户
create user '用户名称'@'localhost' identified by '登录密码';
GRANT all privileges ON 数据库名称.* TO '数据库名称'@'localhost' identified by '登录密码';
flush privileges;