判断一个时间段是否在另一个时间段里
如果想判断 2005 .8~2006.1是否在这个时间段里,变量:
Y1=2005
M1=8
Y2=2006
M2=1
本人愚笨,写了一大排,
zgjf1.jf_year<=Y1 .and. zgjf1.jf_z_year>=Y1 .and. zgjf1.jf_year<=Y2 .and. zgjf1.jf_z_year>=Y2 .and. zgjf1.jf_month<=M1.and. zgjf1.jf_z_month>=M1 .and.zgjf1.jf_month<=M2 .and. zgjf1.jf_z_month>=M2
有没有简便一点的写法.