If I run the following query:
select count(*) from all_tab_columns where column_name = 'foo' and table_name = 'VIEW0';
I get 0 for the result. I expect 1.
But if I run the following query, I get a lot of (expected) lines:
select foo from VIEW0;
Why? I suppose I'm making some kind of stupid syntax error, or my understanding goes away.
source share