Mysql 基础
2018-01-18 本文已影响0人
逐梦明志
创建库
CREATE DATABASE IF NOT EXISTS piwik default charset utf8 COLLATE utf8_general_ci;
授权
grant all privileges on you_database.* to user@10.0.0.0 identified by 'password';
CREATE DATABASE IF NOT EXISTS piwik default charset utf8 COLLATE utf8_general_ci;
grant all privileges on you_database.* to user@10.0.0.0 identified by 'password';