sql - Is there an Oracle's equivalent of MySQL's show table command? -
i know possible use:
select distinct(table_name) all_tab_cols would there better way in oracle show table, i.e. mysql's show table; command.
if require full structure may use
select dbms_metadata.get_ddl( 'table', 'my_table_name' ) dual; see more syntax reference
Comments
Post a Comment