--创建临时表
with 临时表名 as
(
--整合查询(两个查询结果合并)
--比如把父级和对应的子级查出
select * from a where a.id =3
union
select * from a where a.kid = 3
)
--查询统计零时表
select Sum(Famount) from 临时表名
本文共 211 字,大约阅读时间需要 1 分钟。
--创建临时表
with 临时表名 as
(
--整合查询(两个查询结果合并)
--比如把父级和对应的子级查出
select * from a where a.id =3
union
select * from a where a.kid = 3
)
--查询统计零时表
select Sum(Famount) from 临时表名
转载于:https://my.oschina.net/liting/blog/354668