0

How would you query an oracle sql database for all tables in the database and the columns associated with them in with single line/statement of code?

Format:

Table1
  colums
Table2
  Colums
Princesden
  • 139
  • 4
  • 13

1 Answers1

0
select * from all_tab_columns

In this query you see all columns in your table

starko
  • 1,140
  • 10
  • 26