-- 进入查询环境
hive;
-- 进入数据库
use foxdpi01;
hive> use foxdpi01;
OK
Time taken: 2.128 seconds
-- 查看表结构
describe origin_sample_base ;
-- 常看详细信息;
describe formatted origin_sample_base;
-- 查看数据
select * from origin_sample_base limit 10;
--创建表,按照 | 分割字段
CREATE TABLE `url_mapping`(
`code_host_1` string,
`code_host_2` string )
ROW FORMAT SERDE
'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe'
WITH SERDEPROPERTIES (
'escape.delim'='\\\\',
'field.delim'='|',
'serialization.null.format'='')
STORED AS INPUTFORMAT
'org.apache.hadoop.mapred.TextInputFormat'
OUTPUTFORMAT
'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat';
-- load_data
load data local inpath '/data/uc/url_mappingtxt' into table url_mappinp;
hive 基础操作记录(非教程)
最新推荐文章于 2024-08-16 09:51:25 发布