The resulting error is in the header.
Oracle database
Request
SELECT * FROM USERS; USERS is a view, not a table.
And USERS has 1 field whose type contains a link to another table. In tables without such a thing works. I cannot influence the structure of the table, so I have to somehow learn how to work with it.
select * from table(select filed from USERS)but of course you need to take a specific table value from one specific record. - Mike