I don't know that you really want the profilefield table. That is the table that saves the profilefield information that the admin inputs to create the profilefields. When the user fills out a profilefield, his information is stored in the userfield table. So...
Code:
SELECT username, fieldX, fieldY, fieldZ
FROM user LEFT JOIN userfield ON(user.userid=userfield.userid)