USP_PATRONYMICEXCLUSION_GETNAMES
Returns all distinct names in the PATRONYMICEXCLUSION table.
Definition
Copy
create procedure dbo.USP_PATRONYMICEXCLUSION_GETNAMES
as
set nocount on;
select distinct NAME from dbo.PATRONYMICEXCLUSION;
return 0;