I have a query that looks like this:
select Item_Number,Size_Description from Style_Size
where Company_Code='01' and Division_Code='008'
and Item_Number='18SP6726B024B' and Color_Code='00605'
This is the table that it returns
+-----------------+------------------+
| Item_Number | Size_Description |
+-----------------+------------------+
| 18SP6726B024B | SMALL |
| 18SP6726B024B | MEDIUM |
| 18SP6726B024B | LARGE |
| 18SP6726B024B | X-LARGE |
+-----------------+------------------+
How do I make it so it shows all Size Descriptions on one field so it would look like
18SP6726B024B SMALL /MEDIUM /LARGE/X-LARGE
Is this possible or would it have to be four different fields through a pivot? And if so, how would I make sure it will work for all item numbers?