November 2, 2010 at 7:56 pm
HI frnds,
I need to combine two character fields columns as one..plz help me
November 2, 2010 at 10:03 pm
In the query that retrieves the data, just concatenate them together:
SELECT CombinedColumn = StringCol1 + StringCol2
FROM YourTable;
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 8:57 am
If you can't touch or modify your query, you can concatenate the fields using the expression builder in SSRS.
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply