-
from hive_table;hive_table
-
from hive_table where name = 'xxx' or name = 'yyy'
-
from hive_table where name = ["xxx", "yyy"]
-
from hive_table where name LIKE '*_xxx'
-
hive_db where name like "???dm?*"
-
hive_column where table.name = "dim_zdm_shequ_pub"
-
hive_column where columns.name="article_id"
-
hive_column where Dimension.priority = "high"
-
from hive_table where createTime < '2018-01-01' and createTime > '2017-01-01'
-
from hdfs_path where isFile = true or name = "Invoice"
-
hive_table has owner(owner是hive_table的一个属性
-
from hive_table where hive_table has owner(owner是hive_table的一个属性)
-
from hive_table select owner, name, qualifiedName
-
from hive_table where name = 'ods_zdm_hive_dw_dqc_tmp_keyword_rule' select owner, name, qualifiedName(下图的properties都可以查)
-
from hive_table select owner as Owner, name as Name, qualifiedName as FullName
-
hive_table where name = 'ods_zdm_hive_dw_dqc_tmp_keyword_rule' select db.name
-
from hive_column isa fact(这里是根据“类型”搜索,意思是:“类型”是“fact”的hive字段),也可以直接搜索“fact”
-
from hive_table hasTerm "savingsAccount@Banking"(搜索打上了“Banking”这个术语表中“savingsAccount”这个术语标签的hive表)
-
Table hasTerm "savingsAccount@Banking"
-
Table hasTerm "savingsAccount"
-
Table where Table hasTerm "savingsAccount@Banking"
-
from Table hasTerm "savingsAccount@Banking" and name = "customer"
-
from Table hasTerm "savingsAccount@Banking" or Table isA Dimension and (columns.name like "customer*")
-
Column limit 5
-
Column limit 5 offset 10
-
from Column orderby name
-
from Column orderby name asc/desc
-
from Column hasTerm "savingsAccount@Banking" and name = "customer_id" orderby name asc
-
Column select count()
-
Column select count() as Cols
-
Table where db.name = "Reporting" select count()
-
Table hasTerm "savingsAccount@Banking" select count() as terms
-
Table select max(createTime) / Table select min(createTime)
-
Table groupby(owner)
-
Table groupby(createTime) select owner, name, max(createTime)
-
Table groupby(owner) select owner, count()
-
Asset where __state = "DELETED"