Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is a question I did not find answered in Stack Overflow:

How do I show the schema of a table in a MySQL database?

The answer is to read about the describe command.

share|improve this question
I think this is a fine question, but it was not posted correctly. See Etiquette for answering your own question – kmote Jan 28 '12 at 23:55
@kmote It was also closed a long time ago, before the meta question noted. Sure, I agree. – dlamblin Jan 31 '12 at 21:51
2  
This instantly closed question now has 2,500+ views. Some people are finding it useful, if someone can find a non-closed question that answers this, please link it from a comment. – dlamblin Oct 25 '12 at 16:11

closed as not a real question by Mitch Wheat, ennuikiller, ChssPly76, RedFilter, SilentGhost Sep 30 '09 at 17:12

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 24 down vote accepted
show create table t

or

describe [dbname.]table_name

for a nice formated output.

share|improve this answer
SHOW CREATE TABLE yourTable;

or

SHOW COLUMNS FROM yourTable;
share|improve this answer

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