Hive Tips¶
WITH MID-TABLE AS (SELECT ...)
¶
在 Hive 中,可以使用WITH
子句来定义一个中间表,然后在查询中引用这个中间表。这样可以使查询更加简洁,易于理解。
Hive 0.13.0+
WITH
子句在Hive 0.13.0及以上版本中可用。 - hadoop - Is there sql WITH clause equivalent in hive? - Stack Overflow - LanguageManual Select - Apache Hive - Apache Software Foundation
Partitioning & Clustering(Bucketing)¶
拓展阅读
Hive data organization — Partitioning & Clustering | by Amit Singh Rathore | Nerd For Tech | Medium
get_json_object
¶
get_json_object
函数可以用来从 JSON 字符串中提取指定的字段。