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
  • 169
  • 5
  • 14

1 Answers1

0
select * from all_tab_columns

In this query you see all columns in your table

starko
  • 1,150
  • 11
  • 26