UFN_RESEARCHGROUP_GETREFRESHABLEGROUPS
Return
| Return Type |
|---|
| table |
Definition
Copy
create function dbo.UFN_RESEARCHGROUP_GETREFRESHABLEGROUPS()
returns table
as
return
(
select
ID
from
dbo.RESEARCHGROUP
where
AUTOREFRESH = 1
);