Not logged in - Login


View History
R
e
q
u
e
s
t

a

d
e
m
o

CLR Reference: Names With Gender

{TOC}

"Name With Gender"

CLR function

SQLCLR:

SELECT [dbo].[NameWithGenderRandom] (<@name, nvarchar(4000)>, <@gender NVARCHAR (4000)>)

Expected input

Data: Any non-empty string gender: Gender Clause (ex. Ms., Mrs, etc.). Can be empty.

Expected output

Gender is non-empty and has valid gender format or name contains gender clause: Common Name with corresponding gender (nvarchar(MAX)) Gender is empty or has invalid format and name doesn’t contain gender clause: Common unisex name

Error handling

Returns an empty string when passing empty or NULL value in name parameter.

Example

SQLCLR:

SELECT [dbo].[NameWithGenderRandom] ('Kate Portman', 'Ms')

Download a Trial