spLoadRecord_ChapterPages
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@PKID | int | IN |
Definition
Copy
create proc dbo.spLoadRecord_ChapterPages
@PKID int
as
BEGIN
SELECT [ID], [DisplayName], [SitePageID], [IsHomePage], [ChapterSiteID] FROM [dbo].[ChapterPages]
WHERE [ID] = @PKID
END