UFN_MAPDISTANCEUNIT_GETCOUNT
Gets the number of rows in the UFN_MAPDISTANCEUNIT_GETCOUNT table.
Return
Return Type |
---|
int |
Definition
Copy
create function dbo.UFN_MAPDISTANCEUNIT_GETCOUNT()
returns int
with execute as caller
as begin
return (select count(*) from dbo.MAPDISTANCEUNIT)
end