摘要:
create FUNCTION f_GetMonthDay ( @year int, @month int )RETURNS intAS BEGIN Declare @Ret_V int Declare @tmpDate datetime if @month>12 begin set @year=@year+1 set @month=@month-12 end SET @tmpD... 阅读全文
posted @ 2009-09-11 11:53
hao_2468
阅读(127)
评论(0)
推荐(0)