How do I convert the GROUP_CONCAT row result as a separate columns for this query?
SELECT Email, Address, CityName, StateName, PostalCode,
GROUP_CONCAT(DISTINCT
    CONCAT(
      PP.PrefKey
    )
  )
    FROM Profile P 
    LEFT JOIN ProfileAddress PA ON  P.ProfileID = PA.ProfileID
     LEFT JOIN ProfilePrefs PP   ON PP.ProfileID = PA.ProfileID
    WHERE P.ProfileID = 6;
DESIRED OUTPUT OF QUERY RESULT
email | address | cityname | statename | postalcode | availability | certifications | commute ....


 
     
     
    