本文摘自PHP中文网,作者coldplay.xixi,侵删。
mysql中的多表联合查询语句是:【select 语句1 union [union 选项] select 语句2 union [union 选项] select 语句n】。多表联合查询结果是将多个select语句的查询结果联合到一起。

【相关学习推荐:mysql教程(视频)】
mysql多表联合查询语句是:
联合查询结果是将多个select语句的查询结果联合到一起。
可以使用union和union all关键字进行合并。
基本语法:
select 语句1
union [union 选项]
select 语句2
union [union 选项]
select 语句n
其中union选项有两个选项可选:all(表示重复也输出);distinct(去重,完全重复的,默认会去重)
两个表的字段一致即可。
1 2 3 4 5 6 | 例:
select id,addrid
from addr
union all
select id,addrid
from student
|
联合查询的意义
1.查询同一张表,但是需求不同
2.多表查询:多张表的结构完全一样,保存的数据(结构)也是一样的
联合查询order by的使用
在联合查询中:order by只能最后使用一个,需要对查询语句用括号才行。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 例:
---(错误)
select * from student where sex= "man" order by score
union
select * from student wherre sex= "woman" order by score;
这种情况会报错,因为一个句子中不能有两个order by
---(正确但不符合所需)
select * from student where sex= "man"
union
select * from student wherre sex= "woman" order by score;
这种情况是正确的,但是合并又没有意义,他会把之前的sex分好的情况给打乱
---(正确)
(select * from student where sex= "man" order by score
limit 10)
union
(select * from student wherre sex= "woman" order by score
limit 10);
在子语句中使用order by,由于优先级的问题,需要将整个子句用()括起来,且必须和limit结合使用,否则不会生效。
|
想了解更多编程学习,敬请关注php培训栏目!
以上就是mysql中的多表联合查询语句是什么的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
mysql基础入门操作命令的使用分析
详解mysql集群:一主多从架构实现
mysql启动失败:mysql服务无法启动怎么办
美团网技术团队分享的mysql索引及慢查询优化教程
mysql表被锁了怎么办?
mysql数据库忘记密码时如何修改?
mysql产生随机数并连接字符串如何实现
mysql数据库学习之查询操作详解
mysql中如何获取当前日期?日期函数有哪些?
mysql版本号怎么查看
更多相关阅读请进入《mysql》频道 >>
机械工业出版社
本书主要讲述了数据模型、基于对象的数据库和XML、数据存储和查询、事务管理、体系结构等方面的内容。
转载请注明出处:木庄网络博客 » mysql中的多表联合查询语句是什么