mysql> mysql> desc person; +-------+----------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+----------------------+------+-----+---------+----------------+ | id | smallint(5) unsigned | NO | PRI | NULL | auto_increment | | name | char(60) | NO | | | | +-------+----------------------+------+-----+---------+----------------+ 2 rows in set (0.00 sec)
mysql> desc shirt; +-------+----------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+----------------------+------+-----+---------+----------------+ | id | smallint(5) unsigned | NO | PRI | NULL | auto_increment | | owner | smallint(5) unsigned | NO | | | | +-------+----------------------+------+-----+---------+----------------+ 2 rows in set (0.00 sec)