Apr 13, 2020 No Comments mysql 管理 创建数据库CREATE DATABASE IF NOT EXISTS yourdbname DEFAULT CHARSET utf8mb4 COLLATE utf8mb4_general_ci;创建用户create user 'user'@'%' identified by '123';授权用户grant all privileges on db.* to 'user'@'%';查看用户sh... 继续阅读 »