I have a table like this:
Product_ID | Size_ID
         3 |      S
         3 |      M
         4 |      L
         5 |      S
And I would like the result to be like:
Product_ID | Size_ID
         3 |   M, S
         4 |      L
         5 |      S
Is it possible to do that? My query is this:
Select Product_ID, Size_ID
FROM product
Group by Product_ID
Order by Product_ID Desc
 
     
    