Hive中已有表records:
hive> desc records;
OK
year string
temperature int
quality int
hive> select * from records;
OK
2013 15 18
2014 23 32
2015 19 91
</