What is an alternate way of appending or concatenating strings in Sql Server.

 Posted by vishalneeraj-24503 on 7/1/2014 | Category: Sql Server Interview questions | Views: 1344 | Points: 40
Answer:

We can use + sign to append string values in Sql Server.

For Example:-
Select ('Vishal' + ' ' + 'Kumar') As Name;

Output:-
Vishal Kumar


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response