UFN_MAJORGIVINGCAPACITY_GETMINIMUMAMOUNT
Returns a major giving capacity minimum amount given an ID.
Return
| Return Type |
|---|
| money |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_MAJORGIVINGCAPACITY_GETMINIMUMAMOUNT(@ID uniqueidentifier)
returns money
as
begin
return (
select
MINIMUMAMOUNT
from
dbo.MAJORGIVINGCAPACITY
where
ID = @ID
);
end