spDelete_CachedDonationTransaction

Parameters

Parameter Parameter Type Mode Description
@PKID int IN

Definition

Copy


CREATE procedure dbo.spDelete_CachedDonationTransaction
(
@PKID as integer
)
as
begin
    delete from dbo.[DonationTransactions] where
  DonationTransactionsID = @PKID
end