i have table having four columns like this below
Table - subscription having data like this
part_id subscription policylicense enterpriselic
part1 sub1 null null
part2 sub1 pl1 null
part3 sub1 null enterpr1
I would like to get the data like this below
part_id subscription license
part2 sub1 pl1
part3 sub1 enterpr1
how to get the combined license data into one column leaving null values in the same table.. i am using sql server here
Could any one please help on this that would be very grateful to me .. Many Thanks in advance..