create external table if not exists weathe( w_date string, hmax int, hmin int, weathertype string, windy string, city string )row format delimited fields terminated by "," stored as textfile;
时间: 2024-03-29 15:36:43 浏览: 88
create table
5星 · 资源好评率100%
这是一个创建外部表weathe的HiveQL语句,它包括列名w_date、hmax、hmin、weathertype、windy和city,数据类型分别为string、int、int、string、string和string。外部表的存储格式为文本文件,字段之间以逗号为分隔符。如果weathe表不存在,它将被创建。
阅读全文