当前位置:操作系统 > Unix/Linux >>

hive入门篇

hive入门篇
 
hive> desc mytest;
OK
num    int    
name    string    
Time taken: 0.087 seconds
hive> select * from mytest;
OK
NULL    NULL
22    world
33    hive
hive> select * from mytest a join mytest b on a.num=b.num;
 
OK
22    world    22    world
33    hive    33    hive
 
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,