需要识别每个成员在团队字段中出现的“a”和出现日期(作为一个组)。一个数据样本如下:
**member & date**| **Team**
a010112| a
a010112| b
a010112| c
a010112| d
b010112| b
b010112| b
c010112| a
c010112| b
c010112| c
期望的结果如下:
**member & date| **team**| **Occurrence of 'a' per member & date**
a010112| a| yes
a010112| b| yes
a010112| c| yes
a010112| d| yes
b010112| b| no
b010112| b| no
c010112| a| yes
c010112| b| yes
c010112| c| yes
计算字段 - 每个成员和日期分组的“a”的出现是通过案例语句/分区/结束的数据仓库查询的计算字段。可以为所需的语法提供一些帮助吗?
谢谢你,