mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 09:37:23 +00:00
19 lines
281 B
Transact-SQL
19 lines
281 B
Transact-SQL
CREATE
|
|
OR
|
|
ALTER FUNCTION dbo.UDF_GetCountryIdByCode
|
|
(
|
|
@CountryCode NVARCHAR(2)
|
|
)
|
|
RETURNS UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
DECLARE
|
|
@CountryId UNIQUEIDENTIFIER;
|
|
|
|
SELECT @CountryId = CountryID
|
|
FROM dbo.Country
|
|
WHERE ISO3166_1 = @CountryCode;
|
|
|
|
RETURN @CountryId;
|
|
END;
|