码迷,mamicode.com
首页 > 数据库 > 详细

【SQL】ORACLE生成临时表

时间:2017-09-25 13:16:49      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:使用   lct   方法   sum   sele   rate   logs   acl   select   

在日常的SQL查询中,我们需要对要查询的数据进行事先处理,然后再在预先处理好的数据里面进行查询。此时我们就需要用到临时表了,将数据预先处理好放到临时表里面,然后再在临时表里根据我们需要的条件进行查询。

假设我们有一个收入表 :incoming   ,里面的字段分别为:id,name,amt,cur  我们要求每个人的amt换算成RMB之后的和。由于币种有区别,我们需要事先将amt对应币种按照汇率换算成人民币再进行计算。

另一个表时xrt表,存放每个币种对应人民币牌价。

有两种方法,一种是用with   as方法,事先生成一个临时表temp,然后再在这个临时表里查。

with temp as
(
select name, amt*(select cnyrate from xrt x where x.cur=i.cur ) from incoming 

)
select name, sum(amt) from incoming group by name

  第二个方法是使用select方法

select name,sum(amt) from (select name,amt*(selct cnyrate from xrt x where x.cur=i.cur) from incoming) temp group by name;

  

 

【SQL】ORACLE生成临时表

标签:使用   lct   方法   sum   sele   rate   logs   acl   select   

原文地址:http://www.cnblogs.com/contixue/p/7591266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!