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
作者:luyee2010 发表于2013-4-9 3:03:55
原文链接