"""
拼接:concat() | concat_ws()
大小写:upper() | lower()
浮点型操作:ceil() | floor() | round()
整型:可以直接运算
"""
mysql>: select name,area,port from emp;
mysql>: select name as 姓名, concat(area,'-',port) 地址 from emp; # 上海-浦东
mysql>: select name as 姓名, concat_ws('-',area,port,dep) 信息 from emp; # 上海-浦东-教职部
mysql>: selectupper(name) 姓名大写,lower(name) 姓名小写 from emp;
mysql>: select id,salary,ceil(salary)上薪资,floor(salary)下薪资,round(salary)入薪资 from emp;
mysql>: select name 姓名, age 旧年龄, age+1 新年龄 from emp;
条件:where
# 多条件协调操作导入:where 奇数 [groupby 部门 having 平均薪资] orderby [平均]薪资 limit 1
mysql>: select*from emp where id<5 limit 1; # 正常
mysql>: select*from emp limit 1where id<5; # 异常,条件乱序
# 判断规则
"""
比较符合:> | < | >= | <= | = | !=
区间符合:between 开始 and 结束 | in(自定义容器)
逻辑符合:and | or | not
相似符合:like _|%
正则符合:regexp 正则语法
"""
mysql>: select*from emp where salary>5;
mysql>: select*from emp where id%2=0;
mysql>: select*from emp where salary between6and9;
mysql>: select*from emp where id in(1, 3, 7, 20);
# _o 某o | __o 某某o | _o% 某o* (*是0~n个任意字符) |%o%*o*
mysql>: select*from emp where name like'%o%';
mysql>: select*from emp where name like'_o%';
mysql>: select*from emp where name like'___o%';
# sql只支持部分正则语法
mysql>: select*from emp where name regexp '.*\d'; # 不支持\d代表数字,认为\d就是普通字符串
mysql>: select*from emp where name regexp '.*[0-9]'; # 支持[]语法
分组与筛选:group by | having
where与having
# 表象:在没有分组的情况下,where与having结果相同
# 重点:having可以对 聚合结果 进行筛选
mysql>: select*from emp where salary >5;
mysql>: select*from emp having salary >5;
mysql>: select*from emp where id in (5, 10, 15, 20);
mysql>: select*from emp having id in (5, 10, 15, 20);
# 关键字:innerjoinon
# 语法:from A表 innerjoin B表 on A表.关联字段=B表.关联字段
mysql>:
select
emp.id,emp.name,salary,dep.name,work
from emp innerjoin dep on emp.dep_id = dep.id
orderby emp.id;
# 总结:只保留两个表有关联的数据
左连接
# 关键字:leftjoinon
# 语法:from 左表 leftjoin 右表 on 左表.关联字段=右表.关联字段
mysql>:
select
emp.id,emp.name,salary,dep.name,work
from emp leftjoin dep on emp.dep_id = dep.id
orderby emp.id;
# 总结:保留左表的全部数据,右表有对应数据直接连表显示,没有对应关系空填充
右连接
# 关键字:rightjoinon
# 语法:from A表 rightjoin B表 on A表.关联字段=B表关联字段
mysql>:
select
emp.id,emp.name,salary,dep.name,work
from emp rightjoin dep on emp.dep_id = dep.id
orderby emp.id;
# 总结:保留右表的全部数据,左表有对应数据直接连表显示,没有对应关系空填充
左右可以相互转化
mysql>:
select
emp.id,emp.name,salary,dep.name,work
from emp rightjoin dep on emp.dep_id = dep.id
orderby emp.id;
mysql>:
select
emp.id,emp.name,salary,dep.name,work
from dep leftjoin emp on emp.dep_id = dep.id
orderby emp.id;
# 总结:更换一下左右表的位置,相对应更换左右连接关键字,结果相同
全连接
mysql>:
select
emp.id,emp.name,salary,dep.name,work
from emp leftjoin dep on emp.dep_id = dep.id
unionselect
emp.id,emp.name,salary,dep.name,work
from emp rightjoin dep on emp.dep_id = dep.id
orderby id;
# 总结:左表右表数据都被保留,彼此有对应关系正常显示,彼此没有对应关系均空填充对方
一对一与一对多情况一致
createtable author(
id int,
name varchar(64),
detail_id int
);
createtable author_detail(
id int,
phone varchar(11)
);
insertinto author values(1, 'Bob', 1), (2, 'Tom', 2), (3, 'ruakei', 0);
insertinto author_detail values(1, '13344556677'), (2, '14466779988'), (3, '12344332255');
select author.id,name,phone from author join author_detail on author.detail_id = author_detail.id orderby author.id;
select author.id,name,phone from author leftjoin author_detail on author.detail_id = author_detail.id
unionselect author.id,name,phone from author rightjoin author_detail on author.detail_id = author_detail.id
orderby id;
多对多:两表两表建立连接
# 在一对一基础上,建立 作者与书 的多对多关系关系
createtable author(
id int,
name varchar(64),
detail_id int
);
insertinto author values(1, 'Bob', 1), (2, 'Tom', 2), (3, 'ruakei', 0);
createtable book(
id int,
name varchar(64),
price decimal(5,2)
);
insertinto book values(1, 'python', 3.66), (2, 'Linux', 2.66), (3, 'Go', 4.66);
createtable author_book(
id int,
author_id int,
book_id int
);
# 数据:author-book:1-1,22-2,33-1,3insertinto author_book values(1,1,1),(2,1,2),(3,2,2),(4,2,3),(5,3,1),(6,3,3);
# 将有关联的表一一建立连接,查询所以自己所需字段
select book.name, book.price, author.name, author_detail.phone from book
join author_book on book.id = author_book.book_id
join author on author_book.author_id = author.id
leftjoin author_detail on author.detail_id = author_detail.id;
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· 程序员常用高效实用工具推荐,办公效率提升利器!
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 【译】WinForms:分析一下(我用 Visual Basic 写的)