Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For the various popular database systems, how do you list all the columns in a table?

share|improve this question
4  
Pretty lame to answer your own question when there are numerous questions on SO for each specific DB... – OMG Ponies Oct 16 '09 at 21:17
1  
MySQL: stackoverflow.com/questions/1526688/… – OMG Ponies Oct 16 '09 at 21:18
1  
Oracle: stackoverflow.com/questions/205736/… – OMG Ponies Oct 16 '09 at 21:19
2  
I'm just using SO search "list columns oracle" etc... – OMG Ponies Oct 16 '09 at 21:20
1  
SQL Server: stackoverflow.com/questions/1534147/… – OMG Ponies Oct 16 '09 at 21:20
show 6 more comments

9 Answers

DESCRIBE name_of_table;

share|improve this answer

For Oracle (PL/SQL)

SELECT column_name
FROM user_tab_cols
WHERE table_name = 'myTableName'

For MySQL

SHOW COLUMNS FROM table_name
share|improve this answer
1  
Youd probably want to order the Oracle query by column_id – David Aldridge Oct 18 '09 at 12:09

For MS SQL Server:

select * from information_schema.columns where table_name = 'tableName'
share|improve this answer
The column of interest here would be COLUMN_NAME. – Buggieboy Mar 27 at 19:53

SQL Server

SELECT 
    c.name 
FROM
    sys.objects o
INNER JOIN
    sys.columns c
ON
    c.object_id = o.object_id
AND o.name = '[Table Name]'

or

SELECT 
    COLUMN_NAME 
FROM 
    INFORMATION_SCHEMA.COLUMNS
WHERE 
    TABLE_NAME  = '[Table Name]'

The second way is an ANSI standard and therefore should work on all ANSI compliant databases.

share|improve this answer

MS SQL Server:

sp_columns [tablename]

share|improve this answer

SQL Server

To list all the user defined tables of a database:

use [databasename]
select name from sysobjects where type = 'u'

To list all the columns of a table:

use [databasename]
select name from syscolumns where id=object_id('tablename')
share|improve this answer
Heh? This is just wrong...you can only use USE for databases...And the query returns all user defined tables in the database, which is not what the OP wanted. – Maximilian Mayerl Oct 16 '09 at 21:25
Ah, sorry. I've corrected it. – Mircea Grelus Oct 16 '09 at 21:42

Just a slight correction on the others in SQL Server (schema prefix is becoming more important!):

SELECT name
  FROM sys.columns 
  WHERE [object_id] = OBJECT_ID('dbo.tablename');
share|improve this answer

MS SQL Server 2008:

If you highlight just the table name and hit ALT+F1, you'll get list of column names, type, length, etc.

I don't know why, but I can't get the variations on querying INFORMATION_SCHEMA.COLUMNS to work.

share|improve this answer

first write show columns from table name; or simply describe table name;

example my table name is std_rec then show columns from std_rec;

or

describe std_rec;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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