cs_groups_resetorder.prc
来自「community server 源码」· PRC 代码 · 共 45 行
PRC
45 行
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[cs_Groups_ResetOrder]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[cs_Groups_ResetOrder]
GO
Create Proc [dbo].cs_Groups_ResetOrder
(
@ApplicationType int,
@SettingsID int
)
as
Declare @Sort int
Set @Sort = 0
Declare @GroupID int
DECLARE group_Cursor CURSOR FOR
SELECT GroupID FROM cs_Groups where ApplicationType = @ApplicationType and SettingsID = @SettingsID order by SortOrder
OPEN group_Cursor
FETCH NEXT FROM group_Cursor Into @GroupID
WHILE (@@FETCH_STATUS = 0)
Begin
Update cs_Groups Set SortOrder = @Sort where GroupID = @GroupID
Set @Sort = @Sort + 1
FETCH NEXT FROM group_Cursor Into @GroupID
End
CLOSE group_Cursor
DEALLOCATE group_Cursor
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
grant execute on [dbo].[cs_Groups_ResetOrder] to public
go
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?