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

sql - text truncated using perl DBI insert -

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

php - Pass object by reference or value -