码迷,mamicode.com
首页 > 数据库 > 详细

mysql常用操作

时间:2018-06-08 20:29:56      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:span   cal   splay   ecs   创建   keyword   code   sql常用操作   ant   

1. 给数据库添加登录用户和权限

# 创建用户
create
user ecsoft identified by ecsoft;

# grant all privileges on 库名.表名 to ‘用户名‘@‘IP地址‘ identified by ‘密码‘ with grant option;
grant all privileges on ecsoft.* to ecsoft@"localhost" identified by ecsoft;

# 提交 flush
privileges;

 

mysql常用操作

标签:span   cal   splay   ecs   创建   keyword   code   sql常用操作   ant   

原文地址:https://www.cnblogs.com/30go/p/9157188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!