您好,登錄后才能下訂單哦!
因為hive也是java語言編寫的,所以他的基本數據類型和java的大致相同:
特點:個數可以不相同,但是類型相同
例:以family表(name string familes array<string>)為例:
#建表語句:
create table t_family (name string, familes array<string>) row format delimited fields terminated by '\t' collection items terminated by ',';
#查詢
select * from t_family;
#查詢數組中的某一個
select name, familes[0] from t_family;
特點:key-value 可以不相同,個數也可以不同
數據格式:zs age:28,salary:20000,address:beijing
#建表語句:
create table user_info(name string,info map<string,string>) row format delimieted fields terminated by '\t' collection items terminated by ',' map keys terminated by ':'
#查詢語句
select * from user_info;
#查詢具體的map的key的值
select name ,info['age'],info['salary'] from user_info ;
特點:個數相同,類型相同
例:
以stu(name ,info)為例
數據格式:zss 26,123456,shanghai,695
#建表語句:
`create table stu_info(name string, info struct<age:int,id:string,address:string,score:double>) row format delimted fields terminated by '\t' collection items terminated by ','`
#查詢語句
select * from stu_info;
#具體的對象屬性查詢
select name,info.address from stu_info;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。