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

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -