大資料之hiveSQL

來源:互聯網
上載者:User

標籤:mapreduce   建立   tor   技巧   term   com   overwrite   select   ike   

最近增加了學習java基礎演算法,包括幾種排序演算法,二叉樹(前序,後序,中序),隊列和棧,bmp搜尋,廣義搜尋演算法,迭代等等一些技巧(自己動手絕對比單純的理論要強的多,多練練)

 

HIVE是hadoop生態圈的重要一環,降低了hadoop的開發難度,將複雜冗餘的代碼綜合成一個個簡單的SQL語句。但是,很明顯不如傳統的MapReduce靈活,但是提高了項目的開發效率,學習成本低。

主要通過學習視頻加上各種部落格和其它資料,學習基礎的入門SQL語句可以從菜鳥教程上面,hive文法的我主要看的是--> https://www.cnblogs.com/HondaHsu/p/4346354.html

HiveSQL主要分為DDL 和DML

DDL

1.建立表 

create [local] table table_name (column_name column_type [commet ‘描述‘],...)

           partitioned by (column_name,...)

           clustred by (column_name,..)

           order by(column_name)  // 注意與sort by 的區別 前者是全域 後者是當前主機

           row format delimited

           field terminated by char;

           stored as ...

           localtion hdfs_path

          複製一個表結構

         create table table_name like like_table_name;

 

2.修改表

alter table table_name/column_name rename to new_table_name/column_new_name; //修改表名

alter table table_name change [column] column_name column_new_name column_new_name_type [commet] //修改列名

alter table table_name drop cloumn_name/partition_sec;

alter table table_name add column(column_name column_type)

alter table table_name set fileformat new_format;

3刪除表,分區

drop table table_name;

alter table table_name  drop partition_sec;

4建立資料庫

create database database_name;

show databases;

DML

hive 沒有insert into 不支援一條一條的插入,可以使用insert overwrite , load data [local]

insert overwrite table table_name

select * from other_table;

local data [local] path ‘url‘ into table table_name [partition]

hive 不支援等值串連 類似

select * from table1 a and table b where a.cloumn = b.column;

可以使用 left semi join 代替

insert overwrite 可以直接匯出去

insert overwrite [LOCAL] directory ‘ ‘ select * from table;

另外hive中 join只支援等值查詢

select a.column b.column from table_name1 a join table_name2 b on a.column = b.column;

 

DQL

select  [column_name1,..] from table_name

[where where_condition] /[join .. on .. ]

[group by]

[order by]/[sort by]

[partition]

[limit  num]

可能有些地方有些問題,還有很多需要補充。

 

 

 

 

        

 

大資料之hiveSQL

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.