Hello,
I am working in sqlserver and i want to remove space from two words like name = rajesh tripathi
but i want rajeshtripathi
how to remove space.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abrar Ahmad AnsariPosted May 4, 2015, 3:11 AM
Dipankar BiswasPosted May 4, 2015, 2:53 AM
see this link...
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=103892
Khargesh RajputPosted May 4, 2015, 2:52 AM
or
update tablename set colname= replace(colname,' ','')