I know this SQL query provides the table structure:
DESC TableName;
But do we have a query which will provide table structure of all database tables in one go/single query/command? BTW, I am using SQL Developer.
Thank you in advance.
The answer can be found here. You can query
SELECT * FROM ALL_TAB_COLUMNS
or
SELECT * FROM ALL_TAB_COLS