I am trying to get some rows from the same table. It\'s a user table: user has user_id and user_parent_id.
user_id
user_parent_id
I need to get the user_id
Perhaps this should be the select (if I understand the question correctly)
select user.user_fname, user.user_lname, parent.user_fname, parent.user_lname ... As before