I have a table which contains three columns:
- ID
- Reference
- Description
I would like, for reporting purpose, to group the row with the same Reference and produce a Description which is a function of the two descriptions.
Is writing a MERGED_DESCRIPTION(desc1,desc2) possible in SQL Server 2008??
With SQL CLR (the .NET integration into SQL Server) : yes
You can create your own CLR User-Defined Aggregates.