This request is enough:
SELECT null FROM user_tab_columns WHERE table_name = 'MYTABLE' and column_name = 'MYCOLUMN'
The fastest way is to directly query the internal tables, which are not recommended , and you need grants over sys objects:
select null from sys.col$ c , sys.obj$ o , sys.obj$ ot where o.name = 'MYTABLE' and c.name = 'MYCOLUMN' and o.obj
This request is taken from the definition of USER_TAB_COLUMNS , and it can change in different versions (10gR2 in my case) . At this request, I have shortened links to information not requested by you.
Anyway, why do you want to check it out?
Ferranb
source share