学习记录
发布时间:2015-01-19 21:01:57
mysql> grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令’;权限1,权限2,…权限n代表select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file等14个权限。当权限1,权限2,…权限n被all privileges或者all代替,表示赋予用户.........【阅读全文】
发布时间:2014-11-19 16:31:29
新建my.ini,放置在mysql根目录,重启生效my.ini内容如下:[client]port=3306[mysql]default-character-set=utf8[mysqld]# The TCP/IP Port the MySQL Server will listen onport=3306character-set-server=utf8# The default storage engine that will be used when create new tables whendefault-storage-e.........【阅读全文】