In MySql you can see the table definition (columns with their data types etc) with show create table table_name.
show create table table_name
Is there a similar functionality for o
Use DESC:
DESC mytable
Will show you the columns, but unfortunately the create statement is not available using standard oracle tools.