真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Hive數(shù)據(jù)類型有哪些

這篇文章將為大家詳細(xì)講解有關(guān)Hive數(shù)據(jù)類型有哪些,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)是專業(yè)的承留網(wǎng)站建設(shè)公司,承留接單;提供網(wǎng)站設(shè)計(jì)、做網(wǎng)站,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行承留網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!

hive 目前支持的數(shù)據(jù)類型如下:

-- 數(shù)值類型 Numeric Types
TINYINT (1-byte signed integer, from -128 to 127)
SMALLINT (2-byte signed integer, from -32,768 to 32,767)
INT/INTEGER (4-byte signed integer, from -2,147,483,648 to 2,147,483,647)
BIGINT (8-byte signed integer, from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807)
FLOAT (4-byte single precision floating point number)
DOUBLE (8-byte double precision floating point number)
DOUBLE PRECISION (alias for DOUBLE, only available starting with Hive 2.2.0)
DECIMAL
Introduced in Hive 0.11.0 with a precision of 38 digits
Hive 0.13.0 introduced user-definable precision and scale
NUMERIC (same as DECIMAL, starting with Hive 3.0.0)

--日期/時(shí)間類型 Date/Time Types
TIMESTAMP (Note: Only available starting with Hive 0.8.0)
DATE (Note: Only available starting with Hive 0.12.0)
INTERVAL (Note: Only available starting with Hive 1.2.0)

--字符類型 String Types
STRING
VARCHAR (Note: Only available starting with Hive 0.12.0)
CHAR (Note: Only available starting with Hive 0.13.0)

Misc Types
BOOLEAN
BINARY (Note: Only available starting with Hive 0.8.0)

--復(fù)雜類型 Complex Types
arrays: ARRAY (Note: negative values and non-constant expressions are allowed as of Hive 0.14.)
maps: MAP (Note: negative values and non-constant expressions are allowed as of Hive 0.14.)
structs: STRUCT
union: UNIONTYPE (Note: Only available starting with Hive 0.7.0.)

例子:

1)Array數(shù)組
數(shù)據(jù)類型相同的元素集合。

hive>create table student 
(sid int, 
sname string, 
grade array); 
其中array代表各科成績,比如:
{1,YY,[80,100,90]}

2)Map
key和value對(duì):

hive>create table student2 
(sid int, 
sname string, 
grade map); 
其中map指的是學(xué)科對(duì)應(yīng)的成績,比如:
{1,yy,<'English',90>}
上面的array和map可以組合起來使用,一個(gè)人的各科成績:

hive> create table student3 
(sid int, 
sname string, 
grades array>); 
{1,'yy',[<'English',80>,<'English3',90>]}

3)struct
結(jié)構(gòu)體:

hive>create table student4 
(sid int, 
info struct); 
比如:
{1,{'yy',20,'male'}}

關(guān)于“Hive數(shù)據(jù)類型有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


名稱欄目:Hive數(shù)據(jù)類型有哪些
網(wǎng)站路徑:http://weahome.cn/article/poehpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部