I'm new to MySQL and am in need of some help. I have a table where each row represents an item for an order. These items are located in a specific area, as seen below:
Order Number            Area
EEN0103944              305
EEN0103945              305
EEN0103945              305
EEN0103902              104
EEN0103902              111
EEN0103945              123
EEN0103945              005
EEN0103945              002
I'm trying to create a table in MySQL that condenses all the information into one row, making orders the primary key, like below:
Order Number             Area
EEN0103945               305
EEN0103945               104, 111, 123
EEN0103945               005, 002
 
     
    