For the various popular database systems, how do you list all the columns in a table?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
For Oracle (PL/SQL)
For MySQL
|
|||||
|
|
For MS SQL Server:
|
|||
|
|
|
SQL Server
or
The second way is an ANSI standard and therefore should work on all ANSI compliant databases. |
||||
|
|
|
SQL Server To list all the user defined tables of a database:
To list all the columns of a table:
|
|||||
|
|
Just a slight correction on the others in SQL Server (schema prefix is becoming more important!):
|
||||
|
|
|
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. |
|||
|
|
|
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; |
|||
|
|
