UFN_RE7INTEGRATIONCONFIGURATIONROWCOUNT
Returns the number of rows in the RE7INTEGRATIONCONFIGURATION table.
Return
Return Type |
---|
int |
Definition
Copy
create function dbo.UFN_RE7INTEGRATIONCONFIGURATIONROWCOUNT()
returns int
with execute as caller
as begin
return (select
count(ID)
from
dbo.RE7INTEGRATIONCONFIGURATION);
end