stored as 存储格式(testfile/sequencefile/rcfile)
怎么创建一个外部表:
create <span style="color:#FF0000;">external </span> table 表名 (参数) raw format delimited fields terminated by ‘,’//指定数据的解析分隔符 location ‘数据的位置(如果在hdfs上,则天蝎hdfs的位置)’
怎么创建一个分区表:
create table 表名 (参数) partitioned by(country string, state string); 其中:country,state也算是表的字段,如果用户在表的字段中 有与之重复的字段,则会被忽略在hive中,mapred任务是触发提交的,当任务巨大是就会触发
在进行分区表查询是,建议设置:hive.mapred.mode=strict 模式,这样当有没有添加where的分区表查询时,会倍禁止提交。
怎么创建一个外部分区表:
create external table 表名(列名) partitioned by(分区属性) row formate delimited fields terminated by ‘分隔符’
alter table xxx add partition(xx=xx) location ‘数据位置’如果想修改指向的路径:
alter table xxx add partition(xx=xx) set location ‘数据位置’
怎么察看表中的分区:
show partitions 表名;
describe extended 表名
show partitions 表名 partition(xxx=xxx)
load data local inpath‘数据目录’ into table 表名 partition(xxx=xxx);
怎么指定表中数据的存储格式:
stored as 存储格式(textfile/sequencefile/rcfile)
alter table 表名 rename to 新名字怎么删除分区:
alter table 表名 drop partition(xx=xx)
怎么对表中的数据进行修改:
alter table 表名 change column xxx INT after xxx;将列xxx移动到xxx之后怎么增加列:
alter table 表名 add column (app-name string)
alter table 表名 replace column (xxxx 数据类型)
alter table 表名 set serde ‘com.example.xxx’ with serdeproperties('key1'='value1','key2'='value2');
alter table xxxx touch partition(xxx=xxx)
怎么自定义数据格式,在之后介绍