I want to concatenate the words \"dummy\'s\" and \"dock\".
How can I concatenate them in SQL Server 2005? Does it support double quotes?
I got a easy solution which will select from database table and let you do easily.
SELECT b.FirstName + b.LastName FROM tbl_Users b WHERE b.Id='11'
You can easily add a space there if you try
SELECT b.FirstName +' '+ b.LastName FROM Users b WHERE b.Id='23'
Here you can combine as much as your table have.