For example, say we have this:
Table1 = {Table2 = {} }
If I only had Table2, how do I get Table1?
unfortunately, that's impossible :) you'll have to store that information somewhere else.
you can also look into a metatable
which is a little bit different but could still work depending on your use case. for example:
cool = {"dope"} boring = {"not dope"} setmetatable(cool, boring) print(cool, getmetatable(cool)) -- {"dope"}, {"not dope"}
it gets more complicated than that but those are the basics of it