How to find last item in a repeated structure in bigquery

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 03:57:24

问题


I have a nested repeated structure, the repeated structure is of variable length. For example, it could be a person object with a repeated structure that holds cities the person has lived in. I'd like to find the last item in that list say to find current city person lives in. Is there an easy way to do this, I tried looking around jsonpath functions but I'm not sure how to use it with "within". Any help please?


回答1:


1) You can use LAST and WITHIN

SELECT  
  FIRST(cell.value) within record ,
  LAST(cell.value) within record 
FROM [publicdata:samples.trigrams] 
where ngram = "! ! That"

2) or if you want something more advanced you can use POSITION

POSITION(field) - Returns the one-based, sequential position of field within a set of repeated fields.

You can check the samples from trigrams (click on Details to see the unflatten schema) https://bigquery.cloud.google.com/table/publicdata:samples.trigrams?pli=1

And when you run POSITION, you get the ordering of that field.

SELECT  
  ngram,
  cell.value,
  position(cell.volume_count) as pos,
FROM [publicdata:samples.trigrams] 
where ngram = "! ! That"

Now that you have the position, you can query for last one.



来源:https://stackoverflow.com/questions/28557636/how-to-find-last-item-in-a-repeated-structure-in-bigquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!