I am trying to generate a username based on the the first initial of their First Name and their last name. I see how to get their last name $[LastName]. How do I extract the first initial of their first name?
Comments
2 comments
-
Hi lukemiller,
Thanks for your post. There isnt a way to do this out of the box in SQL Data Generator. You could try writing a Regular Expression using the RegEx generator to try and accomplish this, or create a file containg first letters, and use this file as a generator in conjunction with the RegularExpression. The Last name and first name generators are using files that get installed with SQL Data Generator (first.txt and last.txt). Hope this helps.
Best Regards, -
Would it be possible to write a SQL script and have it automatically run after the data is generated?
replace username with left(firstname,1)+lastname
Add comment
Please sign in to leave a comment.