UFN_DECEASINGRULE_ROWCOUNT

Returns the number of rows in the deceasing rule table.

Return

Return Type
int

Definition

Copy


            create function dbo.UFN_DECEASINGRULE_ROWCOUNT
            (
            )
            returns int
            as 

            begin
                return (select count(ID) from dbo.DECEASINGRULE)
            end