If you go to admincp > User Profile Fields and look at the "name" column, then you can find that same column in the usertextfield table and it gives the filled in information for each user.
See this post about getting the information -
https://vborg.vbsupport.ru/showpost....96&postcount=5
Code:
SELECT username, email, fieldX, fieldY
FROM user LEFT JOIN userfield ON(user.userid=userfield.userid)
You would change fieldX to the field number for the Real Name and fieldY to the field for the location, etc.