啊发发发发
Posted weixin_51947541
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了啊发发发发相关的知识,希望对你有一定的参考价值。
//TXT
// row format delimited fields terminated by ','
// location '/app/data2/train'
// tblproperties(
// "skip.header.line.count"="1"
// )
// row format delimited fields terminated by "\\t"
// location '/app/data1/events/products'
//CSV
// row format serde 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
// WITH SERDEPROPERTIES(
// 'separatorChar'=',',
// 'quoteChar'='\\"',
// 'escapeChar'='\\\\'
// )
// location '/app/data5/exam'
// tblproperties(
// "skip.header.line.count"="1"
// )
//Hbase
// STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
// WITH SERDEPROPERTIES ("hbase.columns.mapping" =":key,result:sales,result:praise")
// TBLPROPERTIES( "hbase.table.name" = "exam5:spu")
//Hadoop查数据
// hdfs dfs -cat /app/data/exam/meituan_waimai_meishi.csv | wc -l
//Hbase中查数据
//with
//t1 as (select *,concat(createMonth,serviceReasonDetail) as rowkey from
//exam6.ex_exam_after_sales_service)
//insert into exam6.ex_exam_after_sales_service_statistics select
//rowkey,count(serviceReasonDetail) as serviceReasonDetailCount from t1 group by
//rowkey
//with
//t1 as (select continent,recordDate,countryName,confirmedIncr,
//row_number() over(partition by continent,recordDate order by cast(confirmedIncr
//as Int) desc) as rank from exam4.ex_exam_record er )
//insert overwrite table exam4.ex_exam_covid19_record select
//concat(continent,recordDate) as key,countryName,confirmedIncr from t1 where
//t1.rank=1
//with
//t1 as (select *,(spu_price*month_sales) sales from spu_db.ex_spu)
//insert overwrite table spu_db.ex_spu_hbase select concat(shop_id,shop_name) as key,sum(sales) as sales,sum(praise_num) from t1 group by shop_id,shop_name
// scan 'exam6:after_sales_service',LIMIT=>10
//分区
create table exam3.stubehavior_partitioned(
stu_id string,
kill_id string,
stage string
)
partitioned by (course string)
row format delimited fields terminated by ','
set hive.exec.dynamic.partition=true
set hive.exec.dynamic.partition.mode=nostrict
insert into exam3.stubehavior_partitioned partition(course) select stu_id,kill_id,stage,course_id as course from exam3.stubehavior
以上是关于啊发发发发的主要内容,如果未能解决你的问题,请参考以下文章
Java里,我想往一个固定大小的面板里添加若干按钮,我用了scrollpane,在这个面板里又加了