cs_postcategories_get_byname.prc
来自「community server 源码」· PRC 代码 · 共 42 行
PRC
42 行
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS OFF
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[cs_PostCategories_Get_ByName]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[cs_PostCategories_Get_ByName]
GO
CREATE PROCEDURE dbo.cs_PostCategories_Get_ByName
@Name nvarchar(256),
@SectionQuerySQL ntext,
@SettingsID int
AS
SET Transaction Isolation Level Read UNCOMMITTED
CREATE TABLE #Sections
(
SectionID int
)
INSERT INTO #Sections (SectionID)
EXEC (@SectionQuerySQL)
SELECT
C.CategoryID, C.SectionID, C.Name, C.IsEnabled, C.ParentID, C.Path, C.Description, C.SettingsID,
C.TotalThreads, C.MostRecentPostDate, C.TotalSubThreads, C.MostRecentSubPostDate, C.DateCreated, C.FeaturedPostID
FROM cs_Post_Categories C
WHERE C.SectionID in (select SectionID from #Sections)
and C.SettingsID = @SettingsID
and C.[Name] = @Name
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
GRANT EXECUTE ON [dbo].[cs_PostCategories_Get_ByName] TO [public]
GO
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?