将整数转换为日期以计算天数
Posted
技术标签:
【中文标题】将整数转换为日期以计算天数【英文标题】:convert integer into date to count number of days 【发布时间】:2018-11-24 13:39:27 【问题描述】:我需要将 Integer 转换为 date(yyyy-mm-dd) 格式,以计算天数。
registryDate
20130826
20130829
20130816
20130925
20130930
20130926
期望的输出:
registryDate TodaysDate DaysInBetween
20130826 2018-11-24 1916
20130829 2018-11-24 1913
20130816 2018-11-24 1926
【问题讨论】:
【参考方案1】:您可以将registryDate
转换为String 类型,然后应用to_date
和datediff
计算天差,如下所示:
import org.apache.spark.sql.functions._
import org.apache.spark.sql.types._
import java.sql.Date
val df = Seq(
20130826, 20130829, 20130816, 20130825
).toDF("registryDate")
df.
withColumn("registryDate2", to_date($"registryDate".cast(StringType), "yyyyMMdd")).
withColumn("todaysDate", lit(Date.valueOf("2018-11-24"))).
withColumn("DaysInBetween", datediff($"todaysDate", $"registryDate2")).
show
// +------------+-------------+----------+-------------+
// |registryDate|registryDate2|todaysDate|DaysInBetween|
// +------------+-------------+----------+-------------+
// | 20130826| 2013-08-26|2018-11-24| 1916|
// | 20130829| 2013-08-29|2018-11-24| 1913|
// | 20130816| 2013-08-16|2018-11-24| 1926|
// | 20130825| 2013-08-25|2018-11-24| 1917|
// +------------+-------------+----------+-------------+
【讨论】:
以上是关于将整数转换为日期以计算天数的主要内容,如果未能解决你的问题,请参考以下文章