网站地图    收藏   

主页 > 后端 > php资料库 >

MySQL数据库常用命令行操作_自学php网

来源:自学PHP网    时间:2014-12-04 22:12 作者: 阅读:

[导读] 建立数据库databasetest create database databasetest; 添加用户 grant all on 数据库名.* to 用户名@localhost identified by 密码; grant all on databasetest.* to newuser@localhost identified by password; 说明: (1)grant a...

建立数据库databasetest
create database databasetest;

添加用户
grant all on 数据库名.* to 用户名@localhost identified by ‘密码’;
grant all on databasetest.* to newuser@localhost identified by ‘password’;

说明:
(1)grant all 赋予所有的权限
(2)databasetest.* 数据库 databasetest 中所有的表
(3)newuser 用户名
(4)@localhost 在本地电脑上的 mysql server 服务器
(5)identfified by ‘password’ 设置密码

删除用户
use mysql
mysql>Delete FROM user Where User=”xxxxx” and Host=”localhost”;
mysql>flush privileges;

修改密码
mysqladmin -u root -p password mypasswd

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论