up vote 1 down vote favorite
2
share [g+] share [fb]

I need to query the database to get the column/field names, not to be confused with data in the table. For example, if I have a table named EVENT_LOG that contains eventID, eventType, eventDesc, and eventTime, then I would want to retrieve those field names from the query and nothing else.

Please help? Thanks in advance.

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

You can query the USER_TAB_COLUMNS table for table column metadata.

SELECT table_name, column_name, data_type, data_length
FROM USER_TAB_COLUMNS
WHERE table_name = 'MYTABLE'
link|improve this answer
It worked. Thanks! – Paxenos Jan 17 '09 at 0:01
feedback

In SQL Server...

SELECT [name] AS [Column Name]
FROM syscolumns
WHERE id = (SELECT id FROM sysobjects WHERE type = 'V' AND [Name] = 'Your table name')

Type = 'V' for views Type = 'U' for tables

link|improve this answer
feedback

You can do this:

describe EVENT_LOG;

or

desc EVENT_LOG;
link|improve this answer
feedback

The other answers sufficiently answer the question, but I thought I would share some additional information. Others describe the "DESCRIBE table" syntax in order to get the table information. If you want to get the information in the same format, but without using DESCRIBE, you could do:

SELECT column_name as COLUMN_NAME, nullable || '       ' as BE_NULL,
  SUBSTR(data_type || '(' || data_length || ')', 0, 10) as TYPE
 FROM all_tab_columns WHERE table_name = 'TABLENAME';

Probably doesn't matter much, but I wrote it up earlier and it seems to fit.

link|improve this answer
Thanks for sharing :) All additional information is welcome. I like to take in as much as I can. – Paxenos Jan 17 '09 at 2:42
feedback

That information is stored in the ALL_TAB_COLUMNS system table:

SQL> select column_name from all_tab_columns where table_name = 'DUAL';

DUMMY

Or you could DESCRIBE the table if you are using SQL*PLUS:

SQL> desc dual
Name    					       Null?	Type
----------------------------------------------------- -------- ---------------------- -------------
DUMMY   							VARCHAR2(1)
link|improve this answer
feedback

You can write actual table name in MySQL.

SHOW COLUMNS FROM table_name

Reference: http://dev.mysql.com/doc/refman/5.0/en/show-columns.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.