登录:mysql -u root -pyourpass -h localhost
添加用户:use mysqlinsert into user(Host,User,Password) values('localhost','yourname',password('1234'));
flush privileges;
添加数据库:create database yourdata;
添加权限:grant all privileges on yourdata.* to yourname@localhost identified by '1234';
flush privileges;
1、显示数据库
show databases;
2、选择数据库
use数据库名;
3、显示数据库中的表
show tables;
4、显示数据表的结构
describe 表名;
5、显示表中记录
SELECT*FROM表名
6、建库
createdatabse 库名;
7、建表
createtable表名 (字段设定列表);
mysql>createtablename(
->idintauto_incrementnotnullprimarykey,
->unamechar(8),
->genderchar(2),
->birthday date );
Query OK,0rows affected (0.03sec)
mysql>show tables;
+------------------+|Tables_in_userdb|+------------------+|name|+------------------+1rowinset(0.00sec)
mysql>describe name;
+----------+---------+------+-----+---------+----------------+|Field|Type|Null|Key|Default|Extra|+----------+---------+------+-----+---------+----------------+|id|int(11)|NO|PRI|NULL|auto_increment||uname|char(8)|YES||NULL|||gender|char(2)|YES||NULL|||birthday|date|YES||NULL||+----------+---------+------+-----+---------+----------------+4rowsinset(0.00sec)
注: auto_increment 自增
primarykey主键
8、增加记录
insertintoname(uname,gender,birthday)values('张三','男','1971-10-01');
9、修改记录
updatenamesetbirthday='1971-01-10'whereuname='张三';
10、删除记录
deletefromnamewhereuname='张三';
11、删除表
droptable表名
12、删除库
dropdatabase库名;
13、备份数据库
mysqldump-u root-p--opt 数据库名>备份名; //进入到库目录
14、恢复
mysql-u root-p 数据库名<备份名;//恢复时数据库必须存在,可以为空数据库
15、数据库授权
格式:grant select on 数据库.* to 用户名@登录主机 identified by "密码"
例1、增加一个用户user001密码为123456,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入MySQL,然后键入以下命令:
mysql>grantselect,insert,update,deleteon*.*touser001@"%" Identifiedby"123456";
例2、增加一个用户user002密码为123456,让此用户只可以在localhost上登录,也可以设置指定IP,并可以对数据库test进行查询、插入、修改、删除的操作 (localhost指本地主机,即MySQL数据库所在的那台主机)
//这样用户即使用知道user_2的密码,他也无法从网上直接访问数据库,只能通过MYSQL主机来操作test库。
//首先用以root用户连入MySQL,然后键入以下命令:
mysql>grant select,insert,update,delete on test.* to user002@localhost identified by "123456";
网友评论