您的位置:首页 > 财经 > 金融 > 网站百度收录秒收方法_公众号的关注怎么加微信_好口碑的关键词优化_网络宣传平台有哪些

网站百度收录秒收方法_公众号的关注怎么加微信_好口碑的关键词优化_网络宣传平台有哪些

2024/11/18 17:30:42 来源:https://blog.csdn.net/liuwei0376/article/details/142371991  浏览:    关键词:网站百度收录秒收方法_公众号的关注怎么加微信_好口碑的关键词优化_网络宣传平台有哪些
网站百度收录秒收方法_公众号的关注怎么加微信_好口碑的关键词优化_网络宣传平台有哪些

1. Hive内置Collection Functions

以下函数为Hive是提供的内置集合函数:

返回类型函数(签名)函数说明
intsize(Map<K.V>)Returns the number of elements in the map type.
intsize(Array)Returns the number of elements in the array type.
arraymap_keys(Map<K.V>)Returns an unordered array containing the keys of the input map.
arraymap_values(Map<K.V>)Returns an unordered array containing the values of the input map.
booleanarray_contains(Array, value)Returns TRUE if the array contains value.
arraysort_array(Array)Sorts the input array in ascending order according to the natural ordering of the array elements and returns it (as of version 0.9.0).

2. 测试Collection Functions

with tmp_map_data as (select map("k2", "v2", "k1", "v1", "k3", "v3") as m)
selectsize(m),								-- 3map_keys(m),							-- ["k1","k2","k3"]map_values(m),							-- ["v2","v1","v3"]sort_array(map_keys(m)),				-- ["k1","k2","k3"]array_contains(map_keys(m), 'k3'),		-- truearray_contains(map_keys(m), 'k4')		-- false
from tmp_map_data;

3. 说明

Hive提供的内置集合函数, 在做一些集合内统计/查找/分析等场景下非常方便, 熟练使用, 可以极大的简化这类场景的开发.

参考文献:

  • Hive UDF > CollectionFunctions

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com