创建表-添加数据
Posted hapyygril
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建表-添加数据相关的知识,希望对你有一定的参考价值。
set mapreduce.job.queuename=root.kg;
set hive.exec.dynamic.partition.mode=nonstrict;
drop table if exists kg_fk_city;
set mapreduce.job.queuename=root.kg;
set hive.exec.dynamic.partition.mode=nonstrict;
create table kg_fk_city(
start_id bigint,
end_id bigint
)
row format delimited fields terminated by ‘ ‘;
set mapreduce.job.queuename=root.kg;
set hive.exec.dynamic.partition.mode=nonstrict;
load data local inpath ‘/home/kg/qiaoruihua/hive_test/city/city.txt‘ into table kg_fk_city;
set mapreduce.job.queuename=root.kg;
set hive.exec.dynamic.partition.mode=nonstrict;
select count(start_id) from kg_fk_city where hex(start_id)<hex(end_id);
以上是关于创建表-添加数据的主要内容,如果未能解决你的问题,请参考以下文章
oracle如何创建一个表 在表里添加数据 和如何修改某个数据