a rookie MYSQL user .... I have a simple MySQL query that returns values, and uses the GROUP_CONCAT function:
SELECT Productid, Name, GROUP_CONCAT(value)
FROM search_export
Group By Productid, Name;
Productid Name GROUP_CONCAT(value)
666056542 Brand Name Netgear
1054677552 Ethernet Technology Gigabit Ethernet
665655662 Form Factor Wall Mountable,Desktop
56565765 Media Type Supported Twisted Pair
However, I need to transpose the query so it returns 'Name' as seperate columns, not a row. Is this possible at all with MySQL?