Is there a SQL command to concatenate column results? Here's what I mean - I have SQL that produces this:
SUBSCRIBER LOCATION DESCRIPTION
------------- ------------ ---------------------------------
2017 327 Infrastructure
2017 327 Internet Basic
2017 327 Video Basic
Since the subscriber and location are the same, it would be great to get output something this instead, with the description showing the combined data:
SUBSCRIBER LOCATION DESCRIPTION
------------- ------------ ---------------------------------
2017 327 Infrastructure, Internet Basic, Video Basic
SUBSCRIBER LOCATION DESCRIPTION
------------- ------------ ---------------------------------
2017 327 Infrastructure
2017 327 Internet Basic
2017 327 Video Basic
Since the subscriber and location are the same, it would be great to get output something this instead, with the description showing the combined data:
SUBSCRIBER LOCATION DESCRIPTION
------------- ------------ ---------------------------------
2017 327 Infrastructure, Internet Basic, Video Basic