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