最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to join to every element of an array in snowflake sql? - Stack Overflow

programmeradmin1浏览0评论

The rows I'm looking at have an array of ids, I would like to join to a table to retrieve the labels for those ids and include them in the result, without flattening the array.

Example

table: boxes

box_id contents
1 [1,2,3]
2 [2,4,6]
3 [2,3,5]

The rows I'm looking at have an array of ids, I would like to join to a table to retrieve the labels for those ids and include them in the result, without flattening the array.

Example

table: boxes

box_id contents
1 [1,2,3]
2 [2,4,6]
3 [2,3,5]

table: contents

content_id label
1 'pencil'
2 'eraser'
3 'tissue'
4 'key'
5 'gum'
6 'pills'

query result

box_id contents
1 ['pencil','eraser','tissue']
2 ['eraser','key','pills']
3 ['eraser','tissue','gum']
Share Improve this question asked 2 days ago JohnJohn 3,9587 gold badges32 silver badges45 bronze badges 1
  • 1 Check this similar question stackoverflow/questions/75239830/… Answer uses static values but can be changed to check column values from boxes and contents join – demircioglu Commented 2 days ago
Add a comment  | 

2 Answers 2

Reset to default 0

Since you mentioned you dont want to flatten, you can fetch the elements using the index, caveat is it would only work if the number of elements are static.

with box as 
(
select box_id, get(contents,0) ele_0,get(contents,1) ele_1,get(contents,2) ele_2 from boxes
)
select b.box_id,  ARRAY_AGG(c.label) AS contents
from box b
inner join contents c
on b.ele_0 = c.content_id 
or b.ele_1 = c.content_id 
or b.ele_2 = c.content_id 
GROUP BY b.box_id
order by b.box_id;

Output

You don't have to flatten the table the whole way, just include the flatten for the sake of the join, if you'd like.

SELECT
    boxes.box_id,
    ARRAY_AGG(contents.label)
FROM
    boxes,
    LATERAL FLATTEN(input => boxes.contents) AS item,
    contents
WHERE
    item.value = contents.content_id
GROUP BY boxes.box_id
ORDER BY boxes.box_id;

You can also order those elements in the array using ARRAY_AGG's fantastic WITHIN GROUP ORDER BY functionality.

发布评论

评论列表(0)

  1. 暂无评论