spLoadRecord_NewsStories
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@PKID | int | IN |
Definition
Copy
CREATE PROCEDURE [dbo].[spLoadRecord_NewsStories]
(
@PKID int
)
AS
set nocount on
SELECT [ID],
[NewsChannelID],
[Title],
[Description],
[Categories],
[PublicationDate],
[Guid],
[LinkURL],
[Approved],
[LinkedPageId],
[LinkedPageTabId],
PostId FROM NewsStories WHERE ID = @PKID