UFN_DECEASINGOPTION_ROWCOUNT

Returns the number of rows in the deceasing option table.

Return

Return Type
int

Definition

Copy


            create function dbo.UFN_DECEASINGOPTION_ROWCOUNT
            (
            )
            returns int
            as 

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