奇迹MU自动转职触发器
奇迹MU自动转职触发器
使用此触发器后,所有新建角色自动完成转职,之后无需再进行转职任务。
CREATE TRIGGER 自动转职 ON Character
AFTER INSERT
AS
SET NOCOUNT ON
UPDATE Character SET Class=1
FROM Inserted
WHERE Inserted.Class=0 and Character.accountid=inserted.accountid
and Character.name=inserted.name
UPDATE Character SET Class=17
FROM Inserted
WHERE Inserted.Class=16 and Character.accountid=inserted.accountid
and Character.name=inserted.name
UPDATE Character SET Class=33
FROM Inserted
WHERE Inserted.Class=32 and Character.accountid=inserted.accountid
and Character.name=inserted.name
SET NOCOUNT OFF
最后更新于 2024-06-13 18:16:25 并被添加「sql 奇迹 触发器 奇迹MU 自动转职」标签,已有 402 位童鞋阅读过。
本站使用「署名 4.0 国际」创作共享协议,可自由转载、引用,但需署名作者且注明文章出处