Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: geting Table definition ?
Christoph Skladal wrote:
>
> Hello,
>
> can I get the list of the fields from a table with SQL-Command ?
>
> Thanks
>
> regards
>
> Christoph Skladal
First choice:
Download TOAD (Tool for Oracle Application Developers)
at http://www.toadsoft.com (there is a free version).
Second choice:
something like the following can work, although
I don't know if it is the best method:
select * from user_tab_columns where table_name='...'
Yours,
Geoff Houck
systems hk
hksys_at_teleport.com
http://www.teleport.com/~hksys
Received on Fri Feb 25 2000 - 07:05:20 CST
![]() |
![]() |