我们利用sql指定每月6,16,26和周末作为活动日。
if datepart(day,getdate()) in (6,16,26) or (@@DATEFIRST+DATEPART(Weekday,getdate())-1)%7 in (0,6) begin print '会员日' end else begin print '非会员日' end
声明:如需转载,请注明来源于www.webym.net并保留原文链接:http://www.webym.net/jiaocheng/846.html