MySQL数据库-备份

数据的备份还原

导出:先对数据库进行备份,然后提取备份文件中的sql语句

导入:

方法一:创建和原始数据库同名的数据库,然后从备份文件中导出sql语句(此方法不需要修改导出的sql语句);

方法二:在数据库中直接运行导出的sql语句(需要修改数据库文件)

简单查询

查询的格式

select 查询的内容 from 表名 where 条件

注:表示查询内容的方法

*:表示任意的任意字符

一个字段的名字时:表示查询一个字段

多个字段时:多个字段之间用逗号表示分割

where条件写法

> 大于

案例:select * from students where age>20

>= 大于等于

案例:select * from students where age>=20

< 小于

案例:select * from students where age,20

<= 小于等于

案例:select * from students where age,=20

<> 不等于

案例:select * from students where age<>20

!= 不等于

案例:select * from students where age!>20

between .... and .... 判断范围

案例:select * from students where age between 20 and 30

is null 是空

案例:select * from students where age is null

is not null 不是空

案例:select * from students where age is not null

like 模糊查询

案例:select * from students where name like 'r%'

in 判断某个字段是否在给定的集合中

案例:select * from students where age in(15,23,36)

通配符:%

表示任意多个的任意字符

组合条件的方法:

and:多个条件同时满足

复制代码
案例:select * from students where age<20 and age>30

or:多个条件中满足其中一个

复制代码
案例:select * from students where age=20 or age=22 or age=25

排序

select 查询内容 from 表名 where 条件 order by 字段名

order by 字段名:根据指定的字段进行排序

asc:升序(默认升序)

desc:降序

指定输出几条数据

复制代码
格式:select 查询内容 from 表名 where 条件 order by 字段名 limit 数字

默认输出所有符合条件的记录

指定输出:limit 数字

聚合函数

sum() 求和

avg() 求平均值

max() 求最大值

min() 求最小值

count() 统计记录条数

去重

distinct

复制代码
案例:select distinct from students

去掉相同的值

分组

group by

复制代码
案例:按照班级分组,并且统计各个班级有多少人
select count(*),classid from students group by classid

分组后加条件

having

格式: select 字段 from 表名 group by 字段 having 条件

查询进阶

链接查询:将两张后多张表联合起来进行查询,这种查询叫做链接查询

交叉链接:

表中的每一行分别于其他表中的每一行组成新的行

新表的行数是两个表的行数相乘,列数是两个表的列数相乘

自然链接:

将多个表中,符合条件的进行链接

外链接:左外链接、右外链接

交叉链接

select * from 表名1,表名2

会得到一个笛卡尔积表,这个表中存在着大量的无用数据

自然链接

在交叉链接的基础上,通过加条件,可以得到自然链接

格式:select * from 表名1,表名2 where 表名1.字段=表名2.字段

相关推荐
倔强的石头_7 小时前
kingbase备份与恢复实战(二)—— sys_dump库级逻辑备份与恢复(Windows详细步骤)
数据库
jiayou642 天前
KingbaseES 实战:深度解析数据库对象访问权限管理
数据库
于眠牧北2 天前
MySQL的锁类型,表锁,行锁,MVCC中所使用的临键锁
mysql
李广坤2 天前
MySQL 大表字段变更实践(改名 + 改类型 + 改长度)
数据库
Turnip12023 天前
深度解析:为什么简单的数据库"写操作"会在 MySQL 中卡住?
后端·mysql
爱可生开源社区3 天前
2026 年,优秀的 DBA 需要具备哪些素质?
数据库·人工智能·dba
随逸1774 天前
《从零搭建NestJS项目》
数据库·typescript
加号34 天前
windows系统下mysql多源数据库同步部署
数据库·windows·mysql
シ風箏4 天前
MySQL【部署 04】Docker部署 MySQL8.0.32 版本(网盘镜像及启动命令分享)
数据库·mysql·docker
李慕婉学姐4 天前
Springboot智慧社区系统设计与开发6n99s526(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。
数据库·spring boot·后端