If I do a select * from _schema where table_name = "xyz" I get a list that shows:table_name, colid, name, etc, etc, etcWhat I am wondering is how to write a query where I could use the table colid in place of the table names. So for example if I wanted to execute the following query:SELECT premium_payment_individual_id, premium_payment_id, assigned_number, identification_code_id FROM premium_payment_individual
If the colid for those table column names were 3 8 9 and 11 is there a way to construct it so it was something like:SELECT colid.3, colid.8, colid.9, colid.11 FROM premium_payment_individual