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