LT_REG ENTRY has no relevance to this requirement.
What yolu have to do is create 32 queries which have to be put into a single Union All query.
Select [UNIQUE], [ID #1] as ID, [ID #1 COMMENTS] as Comments from [AVIATION DATA] where [ID #1] is not null
Union All
Select [UNIQUE], [ID #2] as ID, [ID #2 COMMENTS] as Comments from [AVIATION DATA] where [ID #2] is not null
Union All
Etc.....to..
Union All
Select [UNIQUE], [ID #32] as ID, [ID #32 COMMENTS] as Comments from [AVIATION DATA] where [ID #32] is not null
Order By Unique
This has to be done in the sql view of a new query.