我有一个查询,它给了我行动的结果。现在,我想要做的是将这个结果分成两部分,对于我拥有的 2 个不同的用户组......
Select Sum(Actions) From
(
Select
Count(Create_Dtime) As Actions
From Player_Tapjoy
Where
Trunc(Create_Dtime) = To_Date('2012-sep-12','yyyy-mon-dd')
Union All
Select
Count(Create_Dtime) As Actions
From Player_aux_pt
Where Site = 'AppCircle' And
Trunc(Create_Dtime) = To_Date('2012-sep-12','yyyy-mon-dd')
);
当前查询中的两个表都有 player_id 标签。还有另一个名为 player_source 的表,其中每个 player_id 都有组 ID (1-100)。我想通过 player_id 将当前查询映射到 player_source 表,以便我只能包含特定的 group_id(比如 1、2、3、4 和 6)。有什么建议么?
我想在我的第一个查询中包含的 ID 来自查询:
Select Player_Id From Player_Source S Inner Join Feature_Group_Xref F
On S.Group_Id=F.Group_Id
where f.feature_name = 'BC'