一,概述
1,什么是数据库?
答:数据的仓库。
2,什么是MysQL,Qracle,SQLite,Access,MS SQLServer等?
答案:他们均是一个软件,他们均有一个功能:
a.将数据保存到文件或内存。
b.接受特定的命令,然后对文件做相对应的操作。
如果有了以下软件,无需自己再去创建文件或文件夹,而是直接将文件传给上述给软件,让其来进行文件操作,他们统称为数据管理系统(DBMS,Database Managenent System)
3,什么是SQL ?
答:上述提到MysQL等软件可以接受命令,并做出相应的操作,由于命令中包含可以删除文件,获取文件内容等众多操作,对于编程的命令就是SQL语句。
二,下载安装
MysQL是一个关系型数据库管理系统,有瑞典MysQL AB公司开发,目前属于Oracle旗下公司。MysQL是最流行的关系型数据库管理系统,在WEB应用方面MysQL是最好的RDBMS应用软件之一。
要想使用MysQL来储存并操作数据,则需要做几件事情:
a.安装MysQL服务器
b.安装MysQL客户端
c.客户端 连接 服务端
d.客户端 发送命令给 服务端MysQL服务接受的命令并执行相对性的操作(增删改查等)
1,下载
2, 这里是MySQL下载链接 https://www.mysql.com/
3, 安装
4, windows:
window版本
1,下载
MySQL Community Server 8.0.11
下载网站 https://dev.mysql.com/downloads/windows/installer/8.0.html
2,解压
如过想要MySQL安装在指定目录,那么将解压后的文件夹移动到指定目录 如:C:\mysql-8.0.11-winx64。
3,初始化
MySQL解压后的bin目录下有一大堆的可执行文件,执行如下命令初始化数据:
cd c:\mysql-8.0.11-winx64\bin
4,启动MySQL服务
执行命令从而启动MySQL服务
# 进入可执行文件目录
cd c:\mysql-8.0.11-winx64\bin
# 启动MySQL服务
MySQL
5,启动MySQL客户端并链接MySQL服务
由于初始化使用的 mysqld--initialize-insecure 命令,其默认未给账号设置密码
# 进入可执行文件目录
cd c:\mysql-8.0.11-winx64\bin
# 链接MySQL服务器
MySQL -u root -p
# 提示请输入密码,直接回车
输入回车,见下图安装成功:
![这里写图片描述](https://img-blog.csdn.net/2018072016174254?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L0J1ZGRoYWlzYWJveQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70)
到此为止,MySQL服务端已经安装成功并且客户端已经可以链接上,以后在操作MySQL是,只需要重复上述4,5步骤即可。
三,数据库操作
1,显示数据库
show databasese;
默认数据库:
mysql - 用户权限相关数据
test - 用于用户测试数据
information_schema - mysql本身结构相关数据
2,创见自己的数据库
# utf-8
create database 数据库名称 default charset utf8 collate utf_8general_ci;
# gbk
create database 数据库名称 default character set gbk collate gbk_chinses_ci;
3,使用数据库
use 数据库名称;
显示当前使用的数据库中所有表:show tables;
4,用户管理
# 创建用户
create user '用户名'@'IP地址'identified by '密码';
# 删除用户
drop user '用户名'@'IP地址';
# 修改密码
set password for '用户名'@'IP地址'=password('新密码')
5,授权管理
show grants for '用户'@'IP地址' --- 查看权限
grant 权限 on 数据库.表 to '用户'@'IP地址' --- 授权
revoke 权限 on 数据库.表 from '用户'@'IP地址' --- 取消授权
关于授权
select 仅查权限
select,insert 查和插入权限
usage 无访问权限
alter 使用alter table
alter routine 使用alter procedure和drop procedure
create 使用create tabl
create routine 使用create procedure
create temporary tables 使用create temporary tables
create user 使用create user、drop user、rename user和revoke all privileges
create view 使用create view
delete 使用delete
drop 使用drop table
execute 使用call和存储过程
file 使用select into outfile 和 load data infile
grant option 使用grant 和 revoke
index 使用index
insert 使用insert
lock tables 使用lock table
process 使用show full processlist
select 使用select
show databases 使用show databases
show view 使用show view
update 使用update
reload 使用flush
shutdown 使用mysqladmin shutdown(关闭MySQL)
super ??使用change master、kill、logs、purge、master和set global。还允许mysqladmin????调试登陆
replication client 服务器位置的访问
replication slave 由复制从属使用
关于数据库
对于目标数据库以及内部其他:
数据名.* 数据库中的所有
数据库名.表 指定数据库中的某张表
数据库名.存储过程 指定数中的存储过程
*.* 所有数据库
关于用户和IP
用户名@IP地址 用户只能在该IP下才能访问
用户名@192.168.1.% 用户只能在该IP段下访问(通配符 % 表示任意)
用户名 @% 用户可以在任意IP下访问(默认IP地址为%)
实例:
grant all privileges on db1.tb1 TO '用户名'@'IP'
grant select on db1.* TO '用户名'@'IP'
grant select,insert on *.* TO '用户名'@'IP'
revoke select on db1.tb1 from '用户名'@'IP'
特殊的:
flush privileges,将数据读取到内存中,从而立即生效。
忘记密码:
# 启动免授权服务端
mysqld --skip-grant-tables
# 客户端
mysql -u root -p
# 修改用户名密码
update mysql.user set authentication_string=password('666') where user='root';
flush privileges;
四,数据表基本
1,创建表
create table 表名(
列名 类型 是否可以为空
列名 类型 是否可以为空
)
是否可以为空:
null 表示空,非字符串
not null -- 不可以为空
null -- 可以为空
默认值:
默认值创建列时可以指定默认值,当插入数据时如果没有主动设置,则自动添加默认值
create table tb1(
nid int ont null defalut 2,
num int not null
);
自增:
如果为某列设置自增列,插入数据无需设置此列,默认将自增(表中只能有一个自增列)
create table tb1(
nid int not null auto_increment primary key,
num int null
);
注意:1,对于自增列,必须是索引(含主键)
2,对于自增可以设置步长和起始位置
主键:
主键一种特殊的唯一索引,不允许有空值,如果主键使用单个列,则它的值必须唯一,如果是多列,则其组合必须唯一。
create table tb1(
nid int not null,
num int not null,
primary key(nid,num)
);
外键:
外键一个特殊的索引,只能是指定内容
create table color(
nid int not null primary key,
name char(16) not null
);
create table fruit(
nid int not null primary key,
smt char(32) null,
color_id int notnull,
constraint fk_cc foreign key(color_id refarecesv color(nid)
);
2,删除表
drop table 表名
3,清空表
delete from 表名
truncate table 表名
4,修改表
添加列:alter table 表名 add 列名 类型
删除表:alter table 表明 drop column 列名
修改列:
alter table 表名 modify column 列名 类型;
alter table 表明 change 原列名 新列名 类型;
添加主键:
alter table 表名 add primary key;
删除主键:
alter table 表名 drop primary key;
alter table 表名 modify 列名 int, drop primary key;
添加外键:
alter table 从表 add constraint 外键名称(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段);
删除外键:
alter table 表明 trop foreign key 外键名称;
修改默认值:
alter table testalter_tbl alter i set default 1000;
删除默认值:
alter table testalter_tbl alter i drop default;
5,基本数据类型
数值类型:
TINYINT 非常小的数据 1字节 0 ~255
SMALLINT 较小的数据 2字节 0 ~ 65535
MEDIUMINT 中等大小的数据 3字节 0 ~ 16777215
INT 标准整数 4字节 0 ~ 4294967295
BIGINT 较大的整数 8字节 0 ~ 18446744073709551615
FLOAT 单精度浮点数 4字节
DOUBLE 双精度浮点数 8字节
DECIMAL 字符串形式的浮点数 M+2个字节
字符串类型:
CHAR(M) 固定长字符串 M字节 一般用于固定的如:身份证号 手机号等
VARCHAR(M) 可变字符串 长度可变
TINYTEXT 微型文本串 0 ~ 2**8-1 字节
TEXT 文本串 0 ~ 2**16-1字节
日期类型:
DATE YYY-MM-DD(年月日) 1000-01-01 ~ 9999-12-31
DATETIME YY-MM-DD(年月日,时分秒) 1000-01-00:00:00 ~ 9999-12-31 23:59:59
TMESTAMP YYYMMMDDHHMMSS(年月日,时分秒) 1970某事某刻 ~ 2038某时某刻,精度为一秒。
YEAR YYY (年份) 1901 ~ 2155
更多请参考:http://www.runoob.com/mysql/mysql-data-types.html
5,表内容的操作
1,增
insert into 表(列名,列名...)values(值,值...);
注意:
1,列名是可选的,如省略则依次插入所有字段。
2,多个列表和多个值之间使用逗号相隔。
3,值列表和字段名列表一一对应。
4,如插入的是表中部分数据,字段名列表必填。、
2,删(清空)
delete from 表;
delete from where id = 1 and name ='aa';
3,改
update 表 set name = 'aa' where id < 1;
4,查
select * from 表;
select * from 表 where id > 1;
select nid,name,gender as aa from 表 where id >1;
5,其他
1,排序
select * from 表 order by 列 asc; -- 根据列 从小到大排
select * from 表 order by 列 desc - 根据 “列” 从大到小排列
select * from 表 order by 列1 desc,列2 asc - 根据 “列1” 从大到小排列,如果相同则按列2从小到大排序
2,分组
select num from 表 group by num
select num,nid from 表 group by num,nid
select num,nid from 表 where nid > 10 group by num,nid order nid desc
select num,nid,count(*),sum(score),max(score),min(score) from 表 group by num,nid
select num from 表 group by num having max(id) > 10
3,条件
select * from 表 where id > 1 and name != 'alex' and num = 12;
select * from 表 where id between 5 and 16;
select * from 表 where id in (11,22,33)
select * from 表 where id not in (11,22,33)
select * from 表 where id in (select nid from 表)
4,限制
select * from 表 limit 5; - 前5行
select * from 表 limit 4,5; - 从第4行开始的5行
select * from 表 limit 5 offset 4 - 从第4行开始的5行