一、连接MySQL数据库
11 连接: 22 mysql -h host -u user -p 33 44 常见错误: 55 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. 66 退出: 77 QUIT 或者 Control+D
二、数据库操作
显示数据库
1 SHOW DATABASES;
- mysql - 用户权限相关数据
- test - 用于用户测试数据
- information_schema - MySQL本身架构相关数据
创建数据库
11 # utf-8 22 CREATE DATABASE 数据库名 DEFAULT CHARSET utf8 COLLATE utf8_general_ci; 33 44 # gbk 55 CREATE DATABASE 数据库名 DEFAULT CHARACTER SET gbk COLLATE gbk_chinese_ci;
删除数据库
1 DROP DATABASE 数据库名;
使用数据库
1 USE 数据库名;
显示当前数据库下所有的表
1 SHOW TABLES;
用户管理
1 1 创建用户 2 2 create user '用户名'@'IP地址' identified by '密码'; 3 3 删除用户 4 4 drop user '用户名'@'IP地址'; 5 5 修改用户 6 6 rename user '用户名'@'IP地址' to '新用户名'@'IP地址'; 7 7 修改密码 8 8 set password for '用户名'@'IP地址' = Password('新密码') 9 9 1010 PS:用户权限相关数据保存在mysql数据库的user表中,虽然也可以直接对其进行操作但我们不建议这么干
授权管理
11 show grants for '用户'@'IP地址' -- 查看权限 22 grant 权限 on 数据库.表 to '用户'@'IP地址' -- 授权 33 revoke 权限 on 数据库.表 from '用户'@'IP地址' -- 取消权限

1 1 all privileges 除grant外的所有权限 2 2 select 仅查权限 3 3 select,insert 查和插入权限 4 4 ... 5 5 usage 无访问权限 6 6 alter 使用alter table 7 7 alter routine 使用alter procedure和drop procedure 8 8 create 使用create table 9 9 create routine 使用create procedure 1010 create temporary tables 使用create temporary tables 1111 create user 使用create user、drop user、rename user和revoke all privileges 1212 create view 使用create view 1313 delete 使用delete 1414 drop 使用drop table 1515 execute 使用call和存储过程 1616 file 使用select into outfile 和 load data infile 1717 grant option 使用grant 和 revoke 1818 index 使用index 1919 insert 使用insert 2020 lock tables 使用lock table 2121 process 使用show full processlist 2222 select 使用select 2323 show databases 使用show databases 2424 show view 使用show view 2525 update 使用update 2626 reload 使用flush 2727 shutdown 使用mysqladmin shutdown(关闭MySQL) 2828 super 使用change master、kill、logs、purge、master和set global。还允许mysqladmin调试登陆 2929 replication client 服务器位置的访问 3030 replication slave 由复制从属使用
对于权限

11 对于目标数据库以及内部其他: 22 数据库名.* 数据库中的所有 33 数据库名.表 指定数据库中的某张表 44 数据库名.存储过程 指定数据库中的存储过程 55 *.* 所有数据库
对于数据库和表

11 用户名@IP地址 用户只能在改IP下才能访问 22 用户名@192.168.1.% 用户只能在改IP段下才能访问(通配符%表示任意) 33 用户名@% 用户可以再任意IP下访问(默认IP地址为%)
对于用户和IP

11 grant all privileges on db1.tb1 TO '用户名'@'IP' 22 grant select on db1.* TO '用户名'@'IP' 33 grant select,insert on *.* TO '用户名'@'IP' 44 revoke select on db1.tb1 from '用户名'@'IP'
示例
特殊的:
1 flush privileges;将数据读取到内存中,从而立即生效。

11 # 启动免授权服务端 22 mysqld --skip-grant-tables 33 44 # 客户端 55 mysql -u root -p 66 77 # 修改用户名密码 88 update mysql.user set authentication_string=password('666') where user='root'; 99 flush privileges;
忘记密码
三、数据库表操作
创建表
11 create table 表名( 22 列名 类型 是否可以为空, 33 列名 类型 是否可以为空 44 )ENGINE=InnoDB DEFAULT CHARSET=utf8

11 是否可以为空,null表示空,非字符串 22 not null - 不可空 33 null - 可空
是否可以为空

11 #默认值,创建列时可以指定默认值,当插入数据时如果未主动设置,则自动添加默认值 22 create table tb1( 33 nid int not null defalut 2, 44 num int not null 55 )
默认值

1 1 # 自增,如果为某列设置自增列,插入数据时无需设置此列,默认将自增(表中只能有一个自增列) 2 2 create table tb1( 3 3 nid int not null auto_increment primary key, 4 4 num int null 5 5 ) 6 6 或 7 7 create table tb1( 8 8 nid int not null auto_increment, 9 9 num int null, 1010 index(nid) 1111 ) 1212 #注意:1、对于自增列,必须是索引(含主键)。 1313 # 2、对于自增可以设置步长和起始值 1414 show session variables like 'auto_inc%'; 1515 set session auto_increment_increment=2; 1616 set session auto_increment_offset=10; 1717 1818 show global variables like 'auto_inc%'; 1919 set global auto_increment_increment=2; 2020 set global auto_increment_offset=10;
自增

1 1 # 主键,一种特殊的唯一索引,不允许有空值,如果主键使用单个列,则它的值必须唯一,如果是多列,则其组合必须唯一。 2 2 create table tb1( 3 3 nid int not null auto_increment primary key, 4 4 num int null 5 5 ) 6 6 或 7 7 create table tb1( 8 8 nid int not null, 9 9 num int not null, 1010 primary key(nid,num) 1111 )
主键

1 1 # 外键,一个特殊的索引,只能是指定内容 2 2 create table color( 3 3 nid int not null primary key, 4 4 name char(16) not null 5 5 ) 6 6 7 7 create table fruit( 8 8 nid int not null primary key, 9 9 smt char(32) null , 1010 color_id int not null, 1111 constraint fk_cc foreign key (color_id) references color(nid) 1212 )
外键
删除表
1 drop table 表名
清空表
11 delete from 表名 22 truncate table 表名
查看表结构
1 desc 表名
修改表
1 1 添加列:alter table 表名 add 列名 类型 2 2 删除列:alter table 表名 drop column 列名 3 3 修改列: 4 4 alter table 表名 modify column 列名 类型; -- 类型 5 5 alter table 表名 change 原列名 新列名 类型; -- 列名,类型 6 6 7 7 添加主键: 8 8 alter table 表名 add primary key(列名); 9 9 删除主键: 1010 alter table 表名 drop primary key; 1111 alter table 表名 modify 列名 int, drop primary key; 1212 1313 添加外键:alter table 从表 add constraint 外键名称(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段); 1414 删除外键:alter table 表名 drop foreign key 外键名称 1515 1616 修改默认值:ALTER TABLE testalter_tbl ALTER i SET DEFAULT 1000; 1717 删除默认值:ALTER TABLE testalter_tbl ALTER i DROP DEFAULT;
四、表数据操作
增
11 insert into 表 (列名,列名...) values (值,值,值...) 22 insert into 表 (列名,列名...) values (值,值,值...),(值,值,值...) 33 insert into 表 (列名,列名...) select (列名,列名...) from 表
删
11 delete from 表 22 delete from 表 where id=1 and name='jack'
改
1 update 表 set name = 'jack' where id>1
查
11 select * from 表 22 select * from 表 where id > 1 33 select nid,name,gender as g from 表 where id > 1
其他
1 1 a、条件 2 2 select * from 表 where id > 1 and name != 'jack' and num = 12; 3 3 4 4 select * from 表 where id between 5 and 16; 5 5 6 6 select * from 表 where id in (11,22,33) 7 7 select * from 表 where id not in (11,22,33) 8 8 select * from 表 where id in (select nid from 表) 9 9 1010 b、通配符 1111 select * from 表 where name like 'jac%' - jac开头的所有(匹配多个字符) 1212 select * from 表 where name like 'jac_' - jac开头的所有(匹配一个字符) 1313 1414 c、分页 1515 select * from 表 limit 5; - 前5行 1616 select * from 表 limit 4,5; - 从第4行开始的5行 1717 select * from 表 limit 5 offset 4 - 从第4行开始的5行 1818 1919 d、排序 2020 select * from 表 order by 列 asc - 根据 “列” 从小到大排列 2121 select * from 表 order by 列 desc - 根据 “列” 从大到小排列 2222 select * from 表 order by 列1 desc,列2 asc - 根据 “列1” 从大到小排列,如果相同则按列2从小到大排序 2323 2424 e、分组 2525 select num from 表 group by num 2626 select num,nid from 表 group by num,nid 2727 select num,nid from 表 where nid > 10 group by num,nid order by nid desc 2828 select num,nid,count(*),sum(score),max(score),min(score) from 表 group by num,nid 2929 3030 select num from 表 group by num having max(id) > 10 3131 3232 特别的:group by 必须在where之后,order by之前 3333 3434 f、连表 3535 无对应关系则不显示 3636 select A.num, A.name, B.name 3737 from A,B 3838 Where A.nid = B.nid 3939 4040 无对应关系则不显示 4141 select A.num, A.name, B.name 4242 from A inner join B 4343 on A.nid = B.nid 4444 4545 A表所有显示,如果B中无对应关系,则值为null 4646 select A.num, A.name, B.name 4747 from A left join B 4848 on A.nid = B.nid 4949 5050 B表所有显示,如果A中无对应关系,则值为null 5151 select A.num, A.name, B.name 5252 from A right join B 5353 on A.nid = B.nid 5454 5555 g、组合 5656 组合,自动处理重合 5757 select nickname 5858 from A 5959 union 6060 select name 6161 from B 6262 6363 组合,不处理重合 6464 select nickname 6565 from A 6666 union all 6767 select name 6868 from B