Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: List of field of a given table

Re: List of field of a given table

From: marc parkinson <marcpark_at_starband.net>
Date: Sat, 19 Oct 2002 00:15:58 GMT
Message-ID: <ov1s9.137$AM2.66910389@twister2.starband.net>


Two ways to do this.

  1. Desc table_name
  2. If you need the data in a program

Select column_name
from all_tabl_columns
where name = 'TABLE_NAME';

Marc Parkinson

"Diego Balgera" <diego.balgera_at_nokia.com> wrote in message news:YdUr9.17383$ZE1.373595_at_news1.nokia.com...
> A question from a very unexperienced user ...
> Could you please tell me how to list with sql the list of the fields,
given
> a table name, in Oracle 7.x?
> Thank you in advance.
> D.
>
>
Received on Fri Oct 18 2002 - 19:15:58 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US