spark:将时间戳(毫秒级)转换成⽇期(年⽉⽇时分秒)直接写代码(懒得组织语⾔了):
1df.Procedure_Start_Time.cast("float") #将Procedure_Start_TIme的string类型转成float
2df=df.withColumn('Start_Timestamp',l("Procedure_Start_Time")/1000.0)
unix时间戳转换日期格式3df=df.withCOlumn('Start_TIme',func.from_unixtime(df.Start_TImestamp('yyyy-MM-dd HH:mm:sss')))

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。