union与union all
union 缺省在合并结果集后消除重复项,
union all 指定在合并结果集后保留重复项,
打个比喻吧 比如A表的数据是 A{ 1,4,5,9}
B{2,3,4,5}
那我执行此语句 select * from A union select * from B
那结果是{1,2,3,4,5,9}
如果执行select * from A union all select * from B
结果是{1,2,3,4,4,5,5,9}
相关文章
- 01-15数据库-union、union all、intersect、minus函数
- 01-15无法解析 UNION 作业中 "Chinese_*_Stroke_CI_AI" 与"SQL_Latin1_General_CP1_CI_AS" 之间的
- 01-15oralce 中union 和union all 的简单使用说明
- 01-15SQL UNION 运算符
- 01-15union all / union
- 01-15UNION 与 UNION ALL的区别
- 01-15union all与空字段的一种用法
- 01-15union与union all的用法
- 01-15union和bit field巧妙进行寄存器位操作
- 01-15SQL——SQL别名、UNION和SELECT INTO