i just want to ask how to split name using SQL Server 2008. i found this code Split Name
here's the code
SELECT SUBSTRING(Leadname, 1, NULLIF(CHARINDEX(' ', Leadname) - 1, -1)) AS [FirstName],
SUBSTRING(Leadname, CHARINDEX(' ', Leadname) + 1, LEN(Leadname)) AS [LastName]
FROM Customer
lets say that the data is "John Doe", and using that query, the output like this :
First Name Last Name
John Doe
but in my Customer Table, i have Leadname only one word like John. Using that query, i get the result like this :
First Name Last Name
NULL John
all i want, if i only have one word in my Leadname, the result is
First Name Last Name
John NULL
what should i do to make it ?
thanks