I have a table with 4 columns:
| PromoId | Amount| PromoType |Description|
--------------------------------------------------
| 101 | 11 | a | free|
| 101 | 12 | a | 20% |
| 103 | 17 | c | 45% |
| 104 | 14 | c | 50% |
I have to combine the description for the same value of PromoId and PromoType .
For aforementioned table my output should be like :
| PromoId | Amount| PromoType |Description|
--------------------------------------------------
| 101 | 11 | a | free 20% |
| 101 | 12 | a | free 20% |
| 103 | 17 | c | 45% |
| 104 | 14 | c | 50% |
I am using SQL Server. Thanks in advance.