There is a term that identifies a table column that refers to a column in another table. That is the term "foreign key".
Is there a term that identifies a table column that refers to a column in the same table?
An example of such column is the "item_parent" column which refers to the "item_id" column in the following table:
items(item_id, item_parent);