取消SQL列的嵌套并计算两个给定元素的通用功能

时间:2018-10-17 06:39:39

标签: arrays postgresql

我有一个包含4列的SQL表:let header: HttpHeaders = new HttpHeaders(); header = header.set("Content-Disposition", "attachment;filename=name.txt"); header = header.set("Content-Type", "text/plain"); header = header.set("Content-Length", "3"); return Observable.of( new HttpResponse<any>({ body: "abc", headers: header, status: status.code, statusText: status.texte, url: req.url, }), );

user_id, created_at, game_ids and id是一个数组int []。 由于某些原因,game_ids的值相同,因此存在不同的ID,如下所示。

user_id, created_at and game_ids

我想针对给定的userID created_at game_ids id 147 13/9/2018 [559, 13, 21, 212] 1 150 14/9/2018 [21, 559, 212] 2 185 12/9/2018 [212, 21] 3 147 13/9/2018 [559, 13] 4 185 12/9/2018 [212, 21, 13, 559] 5 136 13/9/2018 [559, 13, 212] 6 150 10/9/2018 [21, 559, 13, 569, 212] 7 查找559个其他game_id共享同一位玩家,以及每个game_ids的玩家总数。输出如下所示:

game_ids

0 个答案:

没有答案