当前位置:网站首页>Spark SQL common date functions
Spark SQL common date functions
2022-07-26 08:34:00 【ZenPower】
- current_date() The current date
select current_date();
--2022-02-22
- now() or current_timestamp() current time
select now();
select current_timestamp();
--2022-02-22 22:22:22
- datediff(endDate, startDate) The number of days between the dates
select datediff('2022-02-22','2022-02-20');
--2
- months_between(endDate, startDate) Month difference between dates
select months_between('2022-06-16','2022-02-12');
--4.12903226
- date_add(startDate, numDays) Date plus N God
select date_add('2022-02-22',3)
--2022-02-25
select date_add('2022-02-22',-3)
--2022-02-19
- date_sub(startDate, numDays) Date minus N God
select date_sub('2022-02-22',3)
--2022-02-19
select date_sub('2022-02-22',-3)
--2022-02-25
- add_months(startDate, numMonths) Date plus N month
select add_months('2022-02-22',3);
--2022-05-22
select add_months('2022-02-22',-3);
--2021-11-22
- last_day(date) The last day of the month in which the date is
select last_day('2022-02-22');
--2022-02-28
- next_day(startDate, dayOfWeek) The first day of the week after the specified date ( Week parameter is English abbreviation )
select next_day('2022-02-22','MON')
--2022-02-28
- other
边栏推荐
猜你喜欢
[GUI] swing package (window, pop-up window, label, panel, button, list, text box)
Nodejs2day (modularization of nodejs, NPM download package, module loading mechanism)
Code cloud change remote warehouse command
Add in the registry right click to open in vscode
Super nice navigation page (static page)
Matplotlib learning notes
Beauty naked chat for a while, naked chat over the crematorium!
基于Raft共识协议的KV数据库
How to safely delete a useless activity in Android studio
【时间复杂度空间复杂度】
随机推荐
How to safely delete a useless activity in Android studio
VIM cross line matching search
C # get the information of the selected file
JS工具函数大全
[endnote] detailed explanation of document template layout syntax
请问flink sql client 在sink表,有什么办法增大写出速率吗。通过sink表的同步时
Flex three column layout
Storage of drawings (refined version)
The most complete network: detailed explanation of six constraints of MySQL
Flutter upgrade 2.10
JS tool function Encyclopedia
Super nice navigation page (static page)
Regular expression job
QT note 1
Prefix infix suffix expression (written conversion)
Data validation typeerror: qiao Validate is not a function
六、品达通用权限系统__pd-tools-log
Guitar staff link Jasmine
Two ways to monitor the change of user points
Kotlin中room数据库的使用