您当前的位置:首页 > 其他技术 > 其他技术

神泣服务器上线六十级脚本

本文出处:网游动力作者:本站发布时间:2009-07-11阅读次数:
脚本

CREATE TRIGGER [level] ON [dbo].[CHARS]
FOR INSERT
AS
begin
update CHARS set level=60
where level < 60
END