我将列startMonth作为整数,例如199812
我需要在下个月使用它并返回一个整数199901
。如何在SQL中一行处理这个?
与
相似SELECT NEXTMONTH(199812)
将显示199901
答案 0 :(得分:0)
select case when startMonth % 100 = 12
then startMonth - 11 + 100
else startMonth + 1
end
答案 1 :(得分:0)
不确定sybase语法,但我的方法是: