mysql常用操作
Posted 胖子学习天地
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql常用操作相关的知识,希望对你有一定的参考价值。
1. 给数据库添加登录用户和权限
# 创建用户
create user ‘ecsoft‘ identified by ‘ecsoft‘;
# grant all privileges on 库名.表名 to ‘用户名‘@‘IP地址‘ identified by ‘密码‘ with grant option;
grant all privileges on ecsoft.* to [email protected]"localhost" identified by ‘ecsoft‘;
# 提交
flush privileges;
以上是关于mysql常用操作的主要内容,如果未能解决你的问题,请参考以下文章