我在这里读过一些类似于这个问题的答案,但它们在某种程度上是不同的。我有一些数据放在一个配置单元表中,我希望能够做的是获取2列并将它们移动/附加到数据集的底部。我想这样做,同时保留信息,是与该行以前,也结合了2个单独的日期字段。
我的数据是这样的
ID Action Date/Time of Action Date of Issue Issue
1111 TypeA 01/02/2016 05/04/2016 IssueA
1111 TypeB 01/03/2016 05/04/2016 IssueA
1111 TypeB 03/03/2016 05/04/2016 IssueA
1111 TypeC 28/03/2016 05/04/2016 IssueA
2222 TypeB 01/02/2016 30/03/2016 IssueA
2222 TypeB 05/03/2016 30/03/2016 IssueA
2222 TypeC 28/03/2016 30/03/2016 IssueA
3333 TypeA 07/01/2016 27/01/2016 IssueB
3333 TypeB 03/01/2016 27/01/2016 IssueB
我想说的是
ID Action/Issue Date-Time Type
1111 TypeA 01/02/2016 Action
1111 TypeB 01/03/2016 Action
1111 TypeB 03/03/2016 Action
1111 TypeC 28/03/2016 Action
1111 IssueA 05/04/2016 Issue
2222 TypeB 01/02/2016 Action
2222 TypeB 05/03/2016 Action
2222 TypeC 28/03/2016 Action
2222 IssueA 30/03/2016 Issue
3333 TypeA 07/01/2016 Action
3333 TypeB 03/01/2016 Action
3333 IssueB 27/01/2016 Issue
我在这里看到了一些关于如何使用map和explode的例子,并尝试过使用它们,但我感到困惑,它们似乎更多地涉及到数据透视以使其更广泛,而我想走另一条路。
有什么想法吗?
1条答案
按热度按时间jq6vz3qz1#