user3841039
user3841039

Reputation: 43

Get all the columns in a database at once in sql/apex

I have a database called "cihe" is it possible to select all columns in the data base at once just the columns?(ps) im useing oracle apex to do this if it helps

Upvotes: 0

Views: 386

Answers (1)

Rahul Tripathi
Rahul Tripathi

Reputation: 172448

You may try like this:

select COLUMN_NAME from ALL_TAB_COLUMNS 

You may also check ALL_TAB_COLUMNS

Upvotes: 2

Related Questions