[dbo].[GetCountryCodeStandards]
CREATE PROCEDURE [dbo].[GetCountryCodeStandards]
AS
begin
set nocount on
select
CountryCodeStandard.CountryCodeStandardID,
CountryCodeStandard.CountryName,
CountryCodeStandard.Alpha2Code,
GroupID = case CountryCodeStandard.Alpha2Code
when 'US' then 1
else 2
end
from CountryCodeStandard
order by GroupID asc, CountryCodeStandard.CountryName asc
end
GO
GRANT EXECUTE ON [dbo].[GetCountryCodeStandards] TO [MssExec]
GO