分类

链接

2025 年 4 月
 123456
78910111213
14151617181920
21222324252627
282930  

近期文章

热门标签

新人福利,免费薅羊毛

神泣私服根据时间更改人物POINT倍数

/*******************   功能:根据时间更改人物POINT倍数 时间:2010-11-12 作者:龙歌网络   ************************/ USE PS_GameData GO --判断是否存在触发器 if exists(select name from sysobjects where name='trig_Chars')    drop trigger trig_Chars go --创建触发器 create trigger trig_Chars on Chars for Update as --声明要用到的变量,userid用户名,times倍数 declare @UserID varchar(50),@times int   select @UserID=[UserID] from inserted   begin      if (Datepart(weekday, getdate()...

Others 暂无评论 阅读(2,789)