Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How can I parse the first, middle and last name from a full name field in SQL?

Say I have some nvarchar data 'Joe Blogs'...

I need to be able to query the data to extract the first and last names.

firstname
----------
Joe

lastname
----------
Blogs

What is the simplest way of doing this?

share|improve this question
Are you talking about a simple word splitting mechanism, or a function to semantically determine which part is the first name and which the last? What happens with the input string Ponce de Leon? Also, the title has nothing to do with the question's content... – Esoteric Screen Name Dec 3 '12 at 16:04
1  
Also have you searched the archives? As this is a very common question. Possibly one of the previous responses may answer your question - or if not - help you refine this one. – Leigh Dec 3 '12 at 17:10

marked as duplicate by marc_s, Conrad Frix, DocMax, dystroy, kevingessner Dec 3 '12 at 20:10

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You need to create a T-SQL function that splits a string, based on a delimiter, and returns the tokens (pieces). There are a number available, such as this one:

Tsql split string

share|improve this answer
1  
That's a link to this question :) – LittleBobbyTables Dec 3 '12 at 16:03
1  
@LittleBobbyTables - Perhaps Randy thought this was a question about recursion... – Oded Dec 3 '12 at 16:04
My mind is blown! – LittleBobbyTables Dec 3 '12 at 16:04
Whoops - I'm sorry. That's not exactly what I had in mind. I fixed the link. See the function by Andy Robinson. – Randy Minder Dec 3 '12 at 16:08
Hmm I think that would just handle the simplest case. This one does a much more comprehensive job. – Conrad Frix Dec 3 '12 at 18:22

Not the answer you're looking for? Browse other questions tagged or ask your own question.