标签:一个 cte ant 所有权限 数据库 数据 mysql host cal
use mysql;
create database databaseName character set utf8;
grant all privileges on databaseName.* to username@'ip' identified by 'password';
举例:
use mysql;
create database test_db character set utf8;
grant all privileges on test_db.* to testuser@'localhost' identified by '123456';
标签:一个 cte ant 所有权限 数据库 数据 mysql host cal
原文地址:https://www.cnblogs.com/fsong/p/11335206.html