mysql_tables
This is an old revision of the document!
Once you have selected a database you are able to view the tables with the following command:
show tables;
You are then able to view the details of the table with:
describe tablename;You should be presented with an output similar to
+---------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------+-------------+------+-----+---------+-------+ | name | varchar(20) | YES | | NULL | | | owner | varchar(20) | YES | | NULL | | | species | varchar(20) | YES | | NULL | | | sex | char(1) | YES | | NULL | | | birth | date | YES | | NULL | | | death | date | YES | | NULL | | +---------+-------------+------+-----+---------+-------+
mysql_tables.1428324756.txt.gz · Last modified: 2024/05/23 07:26 (external edit)