My query like this :
SELECT a.number, a.description, b.attribute_code, b.attribute_value
FROM items a
JOIN attr_maps b ON b.number = a.number WHERE a.number = AB123
If the query executed, the result like this :
I want to make the result like this :
How can I do it?