您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Hive常用的SQL有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
-- 創建和刪除數據庫 create database if not exists userdb; drop databases if exists userdb; --查看表的詳細信息 show create table tablename; --查詢一張表,創建一張新的表 create table tablename as select * from tablename
-- 創建hive表 create external table if not exists table_name ( `id` string comment 'id號', `name` string comment '名字', `height` double comment '身高', ) comment '學生信息表' partition by (dt string) row format delimited fields terminated by '\t' lines terminated by '\n' stored as textfile location 'hdfs文件路徑'; -- 刪除hive表 drop table if exists table_name;
-- 刪除分區 alter table table_name drop if exists partition(dt = '20200820'); -- 新建分區,存入數據 alter table table_name add if not exists partition(dt = '20200820') location 'hdfs文件路徑'; -- 重命名分區 alter table table_name partition xxxxx rename to partition xxxxx;
關于“Hive常用的SQL有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。