in reply to Re^2: Finding column info from Oracle tables
in thread Finding column info from Oracle tables

Try this:
select column_name,data_type from user_tab_columns where table_name='<your tablename>'
  • Comment on Re^3: Finding column info from Oracle tables