摘要:
public class OperationLogAttribute : ActionFilterAttribute { public override void OnActionExecuted(ActionExecutedContext filterContext) { var controllerName = filterCo... 阅读全文
摘要:
--序号递归WITH RoulettePrizeItem AS ( SELECT RowNum , EventId FROM #tbRoulettePrizeItem WHERE RowNum = 1 UNION ALL SELECT d.RowNum , d.EventId FROM Roulet 阅读全文
摘要:
CREATE FUNCTION [dbo].[f_AddYears] ( 增加年 @currentDay DATETIME , @years INT )RETURNS DATETIMEAS BEGIN RETURN DATEADD(year,@years,@currentDay) END --增加月 阅读全文