我在使用 Amazon Athena 服务格式化时间戳时遇到了一些问题。
select date_format(current_timestamp, 'y')
只返回 'y' (字符串)。
我发现在 Amazon Athena 中格式化日期的唯一方法是使用 trough ++CONCAT
函数,如下所示:YEAR
MONTH
DAY
select CONCAT(cast(year(current_timestamp) as varchar), '_', cast(day(current_timestamp) as varchar))