spLoadRecord_DonorScrollers

Parameters

Parameter Parameter Type Mode Description
@PKID int IN

Definition

Copy


            create procedure dbo.spLoadRecord_DonorScrollers
            (
                @PKID    int
            )
            as
            begin
                select n.*, c.Title as Name, c.Guid, c.OwnerID -- Do we need all of this or more?
                  from dbo.DonorScrollers n
                  JOIN SiteContent c on n.ContentID = c.ID
                 where n.ContentID = @PKID
            end