数据库

数据库的应用领域几乎涉及到了需要数据管理的方方面面,融机构、游戏网站、购物网站、论坛网站都需要数据库进行数据存储管理

MySQL

1996年,MySQL 1.0发布,作者Monty Widenius, 为一个叫TcX的公司打工,当时只是内部发布。到了96年10月,MySQL 3.11.1发布了,一个月后,Linux版本出现了。真正的MySQL关系型数据库于1998年1月发行第一个版本。MySQL是个开源数据库,后来瑞典有了专门的MySQL开发公司,将该数据库发展壮大,在之后被Sun收购,Sun又被Oracle收购

  • MySQL特点
  1. 是开源数据库,使用C和C++编写
  2. 能够工作在众多不同的平台上
  3. 提供了用于C、C++、Python、Java、Perl、PHP、Ruby众多语言的API
  4. 存储结构优良,运行速度快
  5. 功能全面丰富
  • 启动和连接MySQL服务
  • 服务端启动
  • 查看MySQL状态 : sudo service mysql status
  • 启动/停止/重启服务:sudo service mysql start/stop/restart

  • 连接数据库
mysql    -h  主机地址   -u  用户名    -p  
  1. 回车后输入数据库密码 (我们设置的是123456)
  2. 如果链接自己主机数据库可省略 -h 选项
  • 关闭连接
ctrl-D
exit

SQL语言

  • 什么是SQL

结构化查询语言(Structured Query Language),一种特殊目的的编程语言,是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统。

  • SQL语言特点
  1. SQL语言基本上独立于数据库本身
  2. 各种不同的数据库对SQL语言的支持与标准存在着细微的不同
  3. 每条命令以 ; 结尾
  4. SQL命令(除了数据库名和表名)关键字和字符串可以不区分字母大小写

数据库管理

注意:库名的命名

  1. 数字、字母、下划线,但不能使用纯数字
  2. 库名区分字母大小写
  3. 不要使用特殊字符和mysql关键字
--查看已有库
show databases;

--创建库
create database 库名 [character set utf8];

--e.g. 创建stu数据库,编码为utf8
create database stu character set utf8;
create database stu charset=utf8;

--e.g. 使用stu数据库
use stu;

--查看当前所在库
select database();

--e.g. 删除test数据库
drop database test;

数据表管理

  • 基本思考过程
    1. 确定存储内容
    2. 明确字段构成
    3. 确定字段数据类型

基础数据类型

数字类型

  • 整数类型:INT,SMALLINT,TINYINT,MEDIUMINT,BIGINT
  • 浮点类型:FLOAT,DOUBLE,DECIMAL
  • 比特值类型:BIT

shuzi.png

字符串类型

  • 普通字符串: CHAR,VARCHAR
  • 存储文本:TEXT
  • 存储二进制数据: BLOB
  • 存储选项型数据:ENUM,SET

zifuchuan.PNG

表的基本操作

  • 创建表

create table 表名(字段名 数据类型 约束,字段名 数据类型 约束,...字段名 数据类型 约束);

create table class (
name varchar(30),
age tinyint,
sex enum('m','w'),
score float
);

字段约束

  • 如果你想设置数字为无符号则加上 UNSIGNED
  • 如果你不想字段为 NULL 可以设置字段的属性为 NOT NULL,在操作数据库时如果输入该字段的数据为NULL ,就会报错。
  • DEFAULT 表示设置一个字段的默认值
  • COMMENT 增加字段说明
  • AUTO_INCREMENT 定义列为自增的属性,一般用于主键,数值会自动加1。
  • PRIMARY KEY 关键字用于定义列为主键。主键的值不能重复,且不能为空。
-- 查看数据表

show tables;

-- 查看表结构
-- desc  表名;

desc class;

-- 查看数据表创建信息
--show  create  table  表名;

show create table class;

-- 删除表
-- drop  table  表名;

drop table student;

表数据基本操作

插入(insert)

insert into 表名 values(值1,值2...),(值1,值2...),...;
insert into 表名 (字段1,...) values (值1,值2...),...;
insert into class values
(1,"Lily",18,'f',89),
(2,"Lucy",18,'f',76),
(3,"Tom",17,'m',83);

insert into class
(name,age,sex,score)
values
("Levi",18,'m',86),
("Sunny",17,'m',91),
("Eva",17,'f',71);

insert into hobby
(name,hobby,level,price,remark)
values
("Joy","sing,dance","A",56800,"骨骼惊奇"),
("Abby","sing","B",14800.888,"天籁之音"),
("Barom","draw","B",26800.00,"当代达芬奇");

insert into hobby
(name,hobby,level,price)
values
("Jame","dance","C",8800),
("Emma","draw,sing","B",44800),
("Chen","sing","C",16800);

查询(select)

select * from 表名 [where 条件];
select 字段1,字段2 from 表名 [where 条件];
e.g. 
select * from class;
select name,age from class;

where子句

where子句在sql语句中扮演了重要角色,主要通过一定的运算条件进行数据的筛选,在查询,删除,修改中都有使用。

  • 算数运算符

suanshu.png

e.g.
select * from class_1 where age % 2 = 0;
  • 比较运算符

bijiao.png

e.g.
select * from class where age > 8;
select * from class where age between 8 and 10;
select * from class where age in (8,9);
select * from class where sex is null;
  • 逻辑运算符

luoji.png

e.g.
select * from class where sex='m' and age>9;

yunsuanfu.png

更新表记录(update)

update 表名 set 字段1=值1,字段2=值2,... where 条件;

注意:update语句后如果不加where条件,所有记录全部更新
e.g.
update class set age=18,score=91 where name="Abby";
update class set sex='m' where sex is null;
update class set age=age+1;

删除表记录(delete)

delete from 表名 where 条件;

注意:delete语句后如果不加where条件,所有记录全部清空
e.g.
delete from class where score=0 and sex='m';

表字段的操作(alter)

语法 :alter table 表名 执行动作;

* 添加字段(add)
    alter table 表名 add 字段名 数据类型;
    alter table 表名 add 字段名 数据类型 first;
    alter table 表名 add 字段名 数据类型 after 字段名;
* 删除字段(drop)
    alter table 表名 drop 字段名;
* 修改数据类型(modify)
    alter table 表名 modify 字段名 新数据类型;
* 修改字段名(change)
    alter table 表名 change 旧字段名 新字段名 新数据类型;
e.g. 
--增加字段
alter table hobby add phone char(10) after price;

--删除字段
alter table hobby drop level;

--修改字段数据类型
alter table hobby modify phone char(16);

--修改字段名
alter table hobby change phone tel char(16);

时间类型数据

  • 日期 : DATE
  • 日期时间: DATETIME,TIMESTAMP
  • 时间: TIME
  • 年份 :YEAR

shijian.PNG

  • 时间格式
date :"YYYY-MM-DD"
time :"HH:MM:SS"
datetime :"YYYY-MM-DD HH:MM:SS"
timestamp :"YYYY-MM-DD HH:MM:SS"
e.g.
create table marathon (
id int primary key auto_increment,
athlete varchar(32),
birthday date,
r_time datetime comment "报名时间",
performance time
);

insert into marathon values
(1,"曹操","1998-2-16","2021/5/6 10:10:27","2:38:49"),
(2,"关羽","2000-7-19","2021/4/30 16:22:09","2:27:18"),
(3,"孙策","1995-10-23","2021/5/2 20:1:2","2:44:00");