UFN_EDUCATIONALCONFIGURATIONROWCOUNT

Returns the number of rows in the EDUCATIONALCONFIGURATION table.

Return

Return Type
int

Definition

Copy


            create function dbo.UFN_EDUCATIONALCONFIGURATIONROWCOUNT()
            returns int
            with execute as caller
            as begin
                return (select
                    count(ID)
                from
                    dbo.EDUCATIONALCONFIGURATION);
            end