你好,我们想用MaxCompute 查询最近多少条的分区,但是不知道怎么写 ,${bdp.system.bizdate}' 减7天怎么写 ds =$[${bdp.system.bizdate}' -7*N ] 大概这种格式吗?日期转换会报错。
FAILED: ODPS-0121035:Illegal implicit type cast - in function LT, input parameter '20170114' cannot be casted to datetime, only yyyy-mm-dd hh:mi:ss format is supported, column hint is 'a.ds'
FAILED: ODPS-0121095:Invalid arguments - in function cast, string datetime's format must be yyyy-mm-dd hh:mi:ss, input string is:20170114
select * from table where ds >= to_char(dateadd(to_date('${bizdate}', 'yyyymmdd'), -7, 'dd'),'yyyymmdd')
试试:select * from work_demo.table where to_date(ds, 'yyyymmdd')参考一下这个文档
https://help.aliyun.com/document_detail/30281.html
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。