Stored Procedure Properties
| Name | Value |
|---|---|
| Owner | dbo |
| Created | 2004-05-31 |
| Startup | False |
| Encrypted | False |
Creation Options
| Name | Value |
|---|---|
| QUOTED_IDENTIFIER | OFF |
| ANSI_NULLS | ON |
Parameters
| Name | DataType | Length | Type |
|---|---|---|---|
| @ParentID | int | 4 | INPUT |
Total: 1 parameter(s)
SQL
SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO CREATE PROCEDURE forums_GetThreadByParentID ( @ParentID int ) AS BEGIN SELECT PostID, ThreadID, ForumID, Subject, ParentID, PostLevel, SortOrder, PostDate, ThreadDate, UserName, Approved, Replies = (SELECT COUNT(*) FROM Posts P2 (nolock) WHERE P2.ParentID = P.PostID AND P2.PostLevel != 1), Body, TotalMessagesInThread = 0, -- not used TotalViews, IsLocked FROM Posts P WHERE Approved = 1 AND ParentID = @ParentID END GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO