I need to be able to link current name d to a in a query. Basically, someone looking up the object, which was originally named a, has to be able to reference it by a,b,,c, or d but still be able to "get" a file named using a's value.
Assume:
object_rename table
--------------------
new | old
-----|-----
b | a
c | b
d | c
Is this possible in a query given this table structure?
(Not sure what title to use here.)