SAS PROC SQL - 如何将月份添加到日期
SAS PROC SQL - How to add months to a date
如何在日期中添加月份?
我试过函数 ADD_MONTHS(<my date>, 6)
和 DATEADD(Month, 6, <my date>)
但两个函数都无法识别。
正确使用的函数是什么?
我在 sas community 中找到了答案:函数 intnx()
proc sql;
select *,intnx('month',<my_date>, 6) as incdate format=date9. from have;
quit;
如何在日期中添加月份?
我试过函数 ADD_MONTHS(<my date>, 6)
和 DATEADD(Month, 6, <my date>)
但两个函数都无法识别。
正确使用的函数是什么?
我在 sas community 中找到了答案:函数 intnx()
proc sql;
select *,intnx('month',<my_date>, 6) as incdate format=date9. from have;
quit;