Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 SPSS Modeler 中添加月、周或年。日期数据为 MMDDYYYY。如果我想将月份增加 5 ,我应该在 SPSS Modeler 中做什么。
您可以添加派生节点和以下查询:
to_date((datetime_year(@TODAY))><'-'><(datetime_month(@TODAY)+5)><'-'>< (datetime_day(@TODAY)))
上面的查询将从今天的日期开始添加 5 个月,但您也可以在同一个查询中使用一些日期变量,它也可以正常工作。
希望对您有所帮助!