Skip to content
Advertisement

How to make query to show result of single recursive request?

I have the structure of the table called person, the person has: id,first_name,last_name,mother_id,father_id I want to build a simple query that shows data of person like this: id,first_name,last_name,father_first_name,mother_first_name

Advertisement

Answer

You can query this information simply by joining the table to itself and using a table alias. Recursion is not necessary unless the hierarchy you are navigating has a varying depth. For this question there is a fixed depth and you simply wish to see the parent child relationship between 2 records. The LEFT JOIN will ensure that even if you don’t have both of the parents in your database, the record will still show for that person.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement