I have an Oracle table which contains columns labelled attribute1 to attribute15. I need to list any of those columns that contain any values.
I need to do something like;
select ...
from table
where column_name like 'attribute%'
and column is not null
Can't find anything resembling this