UFN_WEALTHCAPACITYFORMULA_DEFAULTCOUNT
Returns the number of default wealth capacity formulas.
Return
Return Type |
---|
int |
Definition
Copy
create function dbo.UFN_WEALTHCAPACITYFORMULA_DEFAULTCOUNT()
returns int
as begin
return
(select
count(*)
from
dbo.WEALTHCAPACITYFORMULA
where
ISDEFAULT = 1)
end