数据库字面意思就是装数据的仓库
为什么要用数据库呢?
1.不用数据库,放在集合中的数据关闭程序后数据会丢失
2.数据放在文件中,调用时,会调用所有数据,占用内存大,读取数据不方便
数据库就是用来管理数据的
数据库底层,数据最终存在文件中
数据库为了能够在网络中使用,所以分成两部分,一部分是服务端,一部分是客户端。
在生产环境,服务端和客户端很可能不在一台主机
数据库通过Socket交换数据。
常用的数据库有: mysql (免费的)(开源的)oracle(收费)(不开源)
数据库用什么操作?
SQL:结构化查询语言:structured query language
两个数据库通用,但是不同的数据库可能会有一些区别
SQL语言按功能分为四类:
DQL:数据查询语言
DDL:数据定义语言
DML:数据操作语言
TCL:事务控制语言
对数据的增删改查:CRUD
create :增
Retreive :查
Update :更新
Delete :删
数据库的查询
select 查询的内容 from 表
select 1+2
select * from books
查询出来的结果也是以表格的形式呈现的,但是没有这张表
select id,name,price form books where
为查询结果的列去一个别名 ,as可以省略
select id“book id”,name
进行记录的筛选 可以使用 > < >= <= != 可以使用and连接表示范围
select id,name,stock from books where id = 10
and表示和 or表示或
select id,name,stock from books where id > 5 and stork <50
select id,name,stock from books where id > 5 or stork <50
显示作者为空的
select * from books where author is null
显示作者不为空的
select * from books where author is not null
sql语句的格式
select
id,name,stock,price
from
books
where
id>5
![](https://img.haomeiwen.com/i12455717/e73a8870e856c498.png)
![](https://img.haomeiwen.com/i12455717/fd9ddd5f6aa2ccf3.png)
![](https://img.haomeiwen.com/i12455717/9936da041b16f5f7.png)
![](https://img.haomeiwen.com/i12455717/e2bc55cb837e4be2.png)
![](https://img.haomeiwen.com/i12455717/a606fe6c5892f444.png)
%代表若干字符 _代表一个字符
![](https://img.haomeiwen.com/i12455717/01f836dc0b354e6e.png)
![](https://img.haomeiwen.com/i12455717/6552d579884c7b13.png)
![](https://img.haomeiwen.com/i12455717/3548c6bd427355eb.png)
![](https://img.haomeiwen.com/i12455717/ebe143d915144a9d.png)
![](https://img.haomeiwen.com/i12455717/9e32e2f89dc1fc3b.png)
![](https://img.haomeiwen.com/i12455717/91cc46678e3fadc8.png)
![](https://img.haomeiwen.com/i12455717/1946143be9598db3.png)
![](https://img.haomeiwen.com/i12455717/5d36299e577563f4.png)
![](https://img.haomeiwen.com/i12455717/93ab4c776fbc3498.png)
![](https://img.haomeiwen.com/i12455717/df208aeb460de0bc.png)
![](https://img.haomeiwen.com/i12455717/4fc7423fb5b8a42c.png)
![](https://img.haomeiwen.com/i12455717/4ac560189c52ad75.png)
![](https://img.haomeiwen.com/i12455717/c8addb3e28e50336.png)
![](https://img.haomeiwen.com/i12455717/555c03d9db4b2e84.png)
![](https://img.haomeiwen.com/i12455717/fd1a3d6d021981cb.png)
网友评论