一、连接MySQL数据库
1 连接:
2 mysql -h host -u user -p
3
4 常见错误:
5 ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2), it means that the MySQL server daemon (Unix) or service (Windows) is not running.
6 退出:
7 QUIT 或者 Control+D
二、数据库操作
显示数据库
1 SHOW DATABASES;
- mysql - 用户权限相关数据
- test - 用于用户测试数据
- information_schema - MySQL本身架构相关数据
创建数据库
1 # utf-8
2 CREATE DATABASE 数据库名 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
3
4 # gbk
5 CREATE DATABASE 数据库名 DEFAULT CHARACTER SET gbk COLLATE gbk_chinese_ci;
删除数据库
1 DROP DATABASE 数据库名;
使用数据库
1 USE 数据库名;
显示当前数据库下所有的表
1 SHOW TABLES;
用户管理
1 创建用户
2 create user '用户名'@'IP地址' identified by '密码';
3 删除用户
4 drop user '用户名'@'IP地址';
5 修改用户
6 rename user '用户名'@'IP地址' to '新用户名'@'IP地址';
7 修改密码
8 set password for '用户名'@'IP地址' = Password('新密码')
9
10 PS:用户权限相关数据保存在mysql数据库的user表中,虽然也可以直接对其进行操作但我们不建议这么干
授权管理
1 show grants for '用户'@'IP地址' -- 查看权限
2 grant 权限 on 数据库.表 to '用户'@'IP地址' -- 授权
3 revoke 权限 on 数据库.表 from '用户'@'IP地址' -- 取消权限
1 all privileges 除grant外的所有权限
2 select 仅查权限
3 select,insert 查和插入权限
4 ...
5 usage 无访问权限
6 alter 使用alter table
7 alter routine 使用alter procedure和drop procedure
8 create 使用create table
9 create routine 使用create procedure
10 create temporary tables 使用create temporary tables
11 create user 使用create user、drop user、rename user和revoke all privileges
12 create view 使用create view
13 delete 使用delete
14 drop 使用drop table
15 execute 使用call和存储过程
16 file 使用select into outfile 和 load data infile
17 grant option 使用grant 和 revoke
18 index 使用index
19 insert 使用insert
20 lock tables 使用lock table
21 process 使用show full processlist
22 select 使用select
23 show databases 使用show databases
24 show view 使用show view
25 update 使用update
26 reload 使用flush
27 shutdown 使用mysqladmin shutdown(关闭MySQL)
28 super 使用change master、kill、logs、purge、master和set global。还允许mysqladmin调试登陆
29 replication client 服务器位置的访问
30 replication slave 由复制从属使用
对于权限
1 对于目标数据库以及内部其他:
2 数据库名.* 数据库中的所有
3 数据库名.表 指定数据库中的某张表
4 数据库名.存储过程 指定数据库中的存储过程
5 *.* 所有数据库
对于数据库和表
1 用户名@IP地址 用户只能在改IP下才能访问
2 用户名@192.168.1.% 用户只能在改IP段下才能访问(通配符%表示任意)
3 用户名@% 用户可以再任意IP下访问(默认IP地址为%)
对于用户和IP
1 grant all privileges on db1.tb1 TO '用户名'@'IP'
2 grant select on db1.* TO '用户名'@'IP'
3 grant select,insert on *.* TO '用户名'@'IP'
4 revoke select on db1.tb1 from '用户名'@'IP'
示例
特殊的:
1 flush privileges;将数据读取到内存中,从而立即生效。
1 # 启动免授权服务端
2 mysqld --skip-grant-tables
3
4 # 客户端
5 mysql -u root -p
6
7 # 修改用户名密码
8 update mysql.user set authentication_string=password('666') where user='root';
9 flush privileges;
忘记密码
三、数据库表操作
创建表
1 create table 表名(
2 列名 类型 是否可以为空,
3 列名 类型 是否可以为空
4 )ENGINE=InnoDB DEFAULT CHARSET=utf8
1 是否可以为空,null表示空,非字符串
2 not null - 不可空
3 null - 可空
是否可以为空
1 #默认值,创建列时可以指定默认值,当插入数据时如果未主动设置,则自动添加默认值
2 create table tb1(
3 nid int not null defalut 2,
4 num int not null
5 )
默认值
1 # 自增,如果为某列设置自增列,插入数据时无需设置此列,默认将自增(表中只能有一个自增列)
2 create table tb1(
3 nid int not null auto_increment primary key,
4 num int null
5 )
6 或
7 create table tb1(
8 nid int not null auto_increment,
9 num int null,
10 index(nid)
11 )
12 #注意:1、对于自增列,必须是索引(含主键)。
13 # 2、对于自增可以设置步长和起始值
14 show session variables like 'auto_inc%';
15 set session auto_increment_increment=2;
16 set session auto_increment_offset=10;
17
18 show global variables like 'auto_inc%';
19 set global auto_increment_increment=2;
20 set global auto_increment_offset=10;
自增
1 # 主键,一种特殊的唯一索引,不允许有空值,如果主键使用单个列,则它的值必须唯一,如果是多列,则其组合必须唯一。
2 create table tb1(
3 nid int not null auto_increment primary key,
4 num int null
5 )
6 或
7 create table tb1(
8 nid int not null,
9 num int not null,
10 primary key(nid,num)
11 )
主键
1 # 外键,一个特殊的索引,只能是指定内容
2 create table color(
3 nid int not null primary key,
4 name char(16) not null
5 )
6
7 create table fruit(
8 nid int not null primary key,
9 smt char(32) null ,
10 color_id int not null,
11 constraint fk_cc foreign key (color_id) references color(nid)
12 )
外键
删除表
1 drop table 表名
清空表
1 delete from 表名
2 truncate table 表名
查看表结构
1 desc 表名
修改表
1 添加列:alter table 表名 add 列名 类型
2 删除列:alter table 表名 drop column 列名
3 修改列:
4 alter table 表名 modify column 列名 类型; -- 类型
5 alter table 表名 change 原列名 新列名 类型; -- 列名,类型
6
7 添加主键:
8 alter table 表名 add primary key(列名);
9 删除主键:
10 alter table 表名 drop primary key;
11 alter table 表名 modify 列名 int, drop primary key;
12
13 添加外键:alter table 从表 add constraint 外键名称(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段);
14 删除外键:alter table 表名 drop foreign key 外键名称
15
16 修改默认值:ALTER TABLE testalter_tbl ALTER i SET DEFAULT 1000;
17 删除默认值:ALTER TABLE testalter_tbl ALTER i DROP DEFAULT;
四、表数据操作
增
1 insert into 表 (列名,列名...) values (值,值,值...)
2 insert into 表 (列名,列名...) values (值,值,值...),(值,值,值...)
3 insert into 表 (列名,列名...) select (列名,列名...) from 表
删
1 delete from 表
2 delete from 表 where id=1 and name='jack'
改
1 update 表 set name = 'jack' where id>1
查
1 select * from 表
2 select * from 表 where id > 1
3 select nid,name,gender as g from 表 where id > 1
其他
1 a、条件
2 select * from 表 where id > 1 and name != 'jack' and num = 12;
3
4 select * from 表 where id between 5 and 16;
5
6 select * from 表 where id in (11,22,33)
7 select * from 表 where id not in (11,22,33)
8 select * from 表 where id in (select nid from 表)
9
10 b、通配符
11 select * from 表 where name like 'jac%' - jac开头的所有(匹配多个字符)
12 select * from 表 where name like 'jac_' - jac开头的所有(匹配一个字符)
13
14 c、分页
15 select * from 表 limit 5; - 前5行
16 select * from 表 limit 4,5; - 从第4行开始的5行
17 select * from 表 limit 5 offset 4 - 从第4行开始的5行
18
19 d、排序
20 select * from 表 order by 列 asc - 根据 “列” 从小到大排列
21 select * from 表 order by 列 desc - 根据 “列” 从大到小排列
22 select * from 表 order by 列1 desc,列2 asc - 根据 “列1” 从大到小排列,如果相同则按列2从小到大排序
23
24 e、分组
25 select num from 表 group by num
26 select num,nid from 表 group by num,nid
27 select num,nid from 表 where nid > 10 group by num,nid order by nid desc
28 select num,nid,count(*),sum(score),max(score),min(score) from 表 group by num,nid
29
30 select num from 表 group by num having max(id) > 10
31
32 特别的:group by 必须在where之后,order by之前
33
34 f、连表
35 无对应关系则不显示
36 select A.num, A.name, B.name
37 from A,B
38 Where A.nid = B.nid
39
40 无对应关系则不显示
41 select A.num, A.name, B.name
42 from A inner join B
43 on A.nid = B.nid
44
45 A表所有显示,如果B中无对应关系,则值为null
46 select A.num, A.name, B.name
47 from A left join B
48 on A.nid = B.nid
49
50 B表所有显示,如果A中无对应关系,则值为null
51 select A.num, A.name, B.name
52 from A right join B
53 on A.nid = B.nid
54
55 g、组合
56 组合,自动处理重合
57 select nickname
58 from A
59 union
60 select name
61 from B
62
63 组合,不处理重合
64 select nickname
65 from A
66 union all
67 select name
68 from B