📄 cs_weblog_post_delete.prc
字号:
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[cs_weblog_Post_Delete]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[cs_weblog_Post_Delete]
GO
CREATE PROCEDURE [dbo].cs_weblog_Post_Delete
(
@SectionID int,
@PostID int,
@UserID int,
@BlogPostType tinyint = 1,
@SettingsID int
)
AS
SET Transaction Isolation Level Read UNCOMMITTED
Declare @ThreadID int
Select @ThreadID = ThreadID FROM cs_Posts where PostID = @PostID
if(@BlogPostType = 4 or @BlogPostType = 8)
Begin
Delete FROM cs_Posts where PostID = @PostID
End
ELSE
Begin
Delete FROM cs_Posts_InCategories where PostID = @PostID and SettingsID = @SettingsID
Delete FROM cs_PostAttachments where PostID = @PostID and SectionID = @SectionID and SettingsID = @SettingsID
Delete FROM cs_ThreadRating where ThreadID = @ThreadID and SettingsID = @SettingsID
Delete FROM cs_Referrals where PostID = @PostID and SectionID = @SectionID and SettingsID = @SettingsID
Delete FROM cs_TrackedThreads where ThreadID = @ThreadID and SettingsID = @SettingsID
Delete FROM cs_Posts where ThreadID = @ThreadID and SectionID = @SectionID and SettingsID = @SettingsID
Delete FROM cs_Threads where ThreadID = @ThreadID and SectionID = SectionID
End
-- exec cs_weblog_UpdateContentHistory @SectionID = @SectionID, @BlogPostTypeFilter = @BlogPostType
exec cs_Posts_UpdatePostsInCategories @SectionID = @SectionID, @PostID = @PostID
-- Update thread statistics
exec cs_system_ResetThreadStatistics @ThreadID
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
grant execute on [dbo].[cs_weblog_Post_Delete] to public
go
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -