热门
最新
红包
立Flag
投票
同城
我的
发布
CSDN App 扫码分享
3
2
打赏
- 复制链接
- 举报
下一条:
hive 时间戳与日期相互转换方法注意尽量不要使用带格式的写法,否则可能会出现不存在的日期代码:select from_unixtime(cast(first_enter_pool_time as int),'YYYY-MM-DD HH-mm-ss') from table_name where dt='2021-07-18' ;修改后:select from_unixtime(cast(first_enter_pool_time as int)) from table_name where dt='2021-07-18' ;https://blog.csdn.net/HappyRocking/article/details/80854778
