Its my query join table :
SKU | Atributes | Atributes_Value
123 | Color | Black
123 | Size | 40
can i modify the select query like this ? (below)
SKU | new_atributes_value
123 | Black 40
i just want to see data with same SKU in one row! i tried distinct but i didn't get the desired result (below)
SKU | Atributes | Atributes_Value
123 | Color | Black
my question is where the size 40 ? i want to see that item with sku 123 have a black color and size 40 in one row.. anyone can help me? i need the data for my eCommerce website