USP_DATALIST_DONATION_PARTS
Returns list of donation parts
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@SiteContentID | int | IN | SiteContentID |
Definition
Copy
create procedure dbo.USP_DATALIST_DONATION_PARTS(
@SiteContentID int = null)
as
set nocount on;
select
guid,
ID,
ContentID
from dbo.ClientDonations
where
ContentID = @SiteContentID