I have an Nvarchar column which contains ‘John Smith ‘
I want to divide it to ‘John Smith’ and ‘ ‘
Any idea how to do that? I tried the length but it don’t take in consideration the left spaces
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This function returns 2 times the string length, including the space, for an nvarchar:
So
LEFT(@variable, LEN(@variable))andRIGHT(@variable, DATALENGTH(@variable) / 2 - LEN(@variable))should work.I’m assuming from your use of
nvarcharthat this is SQL Server…