hive函数总结-日期函数

获取当前UNIX时间戳函数: unix_timestamp语法: unix_timestamp()
返回值: bigint
说明: 获得当前时区的UNIX时间戳
举例:

hive> select unix_timestamp() from dual;
OK
1455616811
Time taken: 0.785 seconds, Fetched: 1 row(s)

日期函数UNIX时间戳转日期函数: from_unixtime

语法:from_unixtime(bigint unixtime[, string format])
返回值: string
说明: 转化UNIX时间戳(从1970-01-01 00:00:00 UTC到指定时间的秒数)到当前时区的时间格式
举例:

hive> select from_unixtime(1455616811,‘yyyyMMdd‘) from dual;
OK
20160216
Time taken: 0.221 seconds, Fetched: 1 row(s)

日期转UNIX时间戳函数: unix_timestamp语法:unix_timestamp(string date) 
返回值:bigint
说明: 转换格式为“yyyy-MM-dd HH:mm:ss“的日期到UNIX时间戳。如果转化失败,则返回0。
举例:

hive> select unix_timestamp(‘2016-02-16 14:02:03‘) from dual;
OK
1455602523
Time taken: 0.265 seconds, Fetched: 1 row(s)

指定格式日期转UNIX时间戳函数: unix_timestamp语法:   unix_timestamp(string date, string pattern) 
返回值:   bigint
说明: 转换pattern格式的日期到UNIX时间戳。如果转化失败,则返回0。
举例:

hive> select unix_timestamp(‘20160216 14:02:03‘,‘yyyyMMdd HH:mm:ss‘) from dual;
OK
1455602523
Time taken: 0.21 seconds, Fetched: 1 row(s)

日期时间转日期函数: to_date

语法:   to_date(string timestamp) 
返回值:   string
说明: 返回日期时间字段中的日期部分。
举例:

hive> select to_date(‘2016-02-16 14:02:03‘) from dual;
OK
2016-02-16
Time taken: 0.222 seconds, Fetched: 1 row(s)

日期转年函数: year

语法:   year(string date) 
返回值: int
说明: 返回日期中的年。
举例:

hive> select year(‘2016-02-16 14:02:03‘) from dual;
OK
2016
Time taken: 0.255 seconds, Fetched: 1 row(s)
hive> select year(‘2016-02-16‘) from dual;
OK
2016
Time taken: 0.325 seconds, Fetched: 1 row(s)

日期转月函数: month

语法: month   (string date) 
返回值: int
说明: 返回日期中的月份。
举例:同上

日期转天函数: day

语法: day   (string date) 
返回值: int
说明: 返回日期中的天。
举例:同上

日期转小时函数: hour

语法: hour   (string date) 
返回值: int
说明: 返回日期中的小时。
举例:同上

日期转分钟函数: minute

语法: minute   (string date) 
返回值: int
说明: 返回日期中的分钟。
举例:同上

日期转秒函数: second

语法: second   (string date) 
返回值: int
说明: 返回日期中的秒。
举例:同上

日期转周函数: weekofyear

语法:   weekofyear (string date) 
返回值: int
说明: 返回日期在当前的周数。
举例:

hive> select weekofyear(‘2016-02-16‘) from dual;
OK
7
Time taken: 0.213 seconds, Fetched: 1 row(s)

日期比较函数: datediff

语法:   datediff(string enddate, string startdate) 
返回值: int
说明: 返回结束日期减去开始日期的天数。
举例:

hive> select datediff(‘2015-12-20‘,‘2016-02-15‘) from dual;
OK
-57
Time taken: 0.34 seconds, Fetched: 1 row(s)

日期增加函数: date_add

语法:   date_add(string startdate, int days) 
返回值: string
说明: 返回开始日期startdate增加days天后的日期。
举例:

hive> select date_add(‘2015-12-08‘,10) from dual;
OK
2015-12-18
Time taken: 0.289 seconds, Fetched: 1 row(s)

日期减少函数: date_sub语法:   date_sub (string startdate, int days) 
返回值: string
说明: 返回开始日期startdate减少days天后的日期。
举例:

hive> select date_sub(‘2015-12-08‘,10) from dual;
OK
2015-11-28
Time taken: 0.249 seconds, Fetched: 1 row(s)
时间: 2024-11-03 20:56:01

hive函数总结-日期函数的相关文章

ORACLE PL/SQL 字符串函数、数学函数、日期函数

ORACLE PL/SQL 字符串函数.数学函数.日期函数 --[字符串函数] --字符串截取substr(字段名,起始点,个数) select Name,substr(Name,2,4),substr(Name,0,3),substr(Name,-2,3),substr(Name,-2,1) from t1; --字符串从前面取三个(0开始) select Name,substr(Name,0,3) from t1; --字符串从后面取三个 select Name,substr(Name,-3

SQL Server系统函数:日期函数

原文:SQL Server系统函数:日期函数 1.返回当前日期和时间 select GETDATE() '当前日期-精确到33毫秒' select GETUTCDATE() 'UTC日期和时间-精确到33毫秒' select SYSDATETIME() '当前日期和时间-精确到100纳秒(高精度)' select SYSUTCDATETIME() 'UTC-精确到100纳秒(高精度)' select SYSDATETIMEOFFSET()'当前日期与UTC之间的差值(时分)' 2.转换偏移,从一

sql的基础语句-单行函数,dual,数字函数,日期函数,表连接,集合运算,分组报表,单行子查询,多行子查询

3. 单行函数 3.1 转换函数 select ascii('A'),chr(65) from dual; select to_char(1243123),1231451 from dual;靠左边的就是字符串,靠右边的就是数字 select to_char(123512a121) from dual;   --错误的写法,没有引号表示数字,但是数字里面包含了字母,不合法的输入值 select to_number('123141211') from dual; select to_number(

函数,字符串函数,日期函数,数学函数,系统函数,聚合函数

------------------字符串函数------------------------charindex(要查找的字符串,被查找的字符串,开始查找的位置):返回要查找的字符串在被查找的字符串中的位置select charindex('sve','hello sve hi sve',1)--结果为7select charindex('sve','hello sve hi sve',8)--结果为14--len(字符串):返回字符串的长度select len('hello sve')--lo

SQL server 模糊查询 排序 聚合函数 数学函数 字符串函数 时间日期函数 转换、函数转换

create database lianxi831  --创建数据库gouse lianxi831  --引用数据库gocreate table xs  --插入表格( code int not null,  --写入内容 name varchar(10), cid varchar(18), banji varchar(10), yufen decimal(18,2), shufen decimal(18,2), yingfen decimal(18,2),)goinsert into xs v

orcale 单行函数之数字函数, 日期函数

日期函数: 案例:

0831 模糊查询,排序查询,聚合函数,时间日期函数,数学函数,字符串函数

create database lianxi0720gouse lianxi0720gocreate table student( code int not null,--学号,不可为空 name varchar(10),--学生姓名 sex varchar(10),--性别 banji varchar(10),--班级 yufen decimal(18,2),--语文分数 shufen decimal(18,2),--数学分数 yingfen decimal(18,2),--英语分数)go--

oracle数据库内置函数之数值函数、字符函数、日期函数、转换函数及其在查询语句中的运用

数值函数: 1.四舍五入函数round() from dual:一行一列组成 select round(23.4) from dual;--默认不写m表示m为0 select round(23.45,1) from dual;--1表示保留小数点后一位,那么是小数点的第二位四舍五入 select round(23.45,-1) from dual;---1表示小数点前一位四舍五入取整,前一位是3四舍五入为20 2.取整函数: select ceil(23.45),floor(23.45) fro

oracle 常用函数之 日期函数

---------------------------------------------日期/时间函数-------------------------------------------------1: SYSDATE用来得到系统的当前日期 SELECT SYSDATE FROM DUAL; --2: ADD_MONTHS增加或减去月份 SELECT TO_CHAR(ADD_MONTHS(TO_DATE('20080818','YYYYMMDD'),2), 'YYYY-MM-DD') FRO