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.
describe
SHOW CREATE TABLE yourTable
or
SHOW COLUMNS FROM yourTable
Bobby
show create table t
describe table t
for a nice formated output.