Check the created table by issuing a 'describe' command : Describe Table Structure « Table « MySQL Tutorial






DESCRIBE tableName;

DESC is a short form of DESCRIBE.

Field indicates the column name.

Type is the data type for the column.

NULL indicates whether the column can contain NULL values.

Key indicates whether the column is indexed.

Default specifies the column's default value.

Extra displays special information about columns.

The AUTO_INCREMENT option is shown in Extra.

mysql>
mysql>
mysql>
mysql> CREATE TABLE employee (
    ->     ID INT(2) auto_increment primary key,
    ->     First_name VARCHAR(20),
    ->     Last_name VARCHAR(30),
    ->     Start_date DATE,
    ->     Salary int(6),
    ->     city VARCHAR(20),
    ->     description VARCHAR(20)
    -> );
Query OK, 0 rows affected (0.02 sec)

mysql>
mysql> desc employee;
+-------------+-------------+------+-----+---------+----------------+
| Field       | Type        | Null | Key | Default | Extra          |
+-------------+-------------+------+-----+---------+----------------+
| ID          | int(2)      | NO   | PRI | NULL    | auto_increment |
| First_name  | varchar(20) | YES  |     | NULL    |                |
| Last_name   | varchar(30) | YES  |     | NULL    |                |
| Start_date  | date        | YES  |     | NULL    |                |
| Salary      | int(6)      | YES  |     | NULL    |                |
| city        | varchar(20) | YES  |     | NULL    |                |
| description | varchar(20) | YES  |     | NULL    |                |
+-------------+-------------+------+-----+---------+----------------+
7 rows in set (0.00 sec)

mysql>
mysql> drop table employee;
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>








4.2.Describe Table Structure
4.2.1.Check the created table by issuing a 'describe' command
4.2.2.To verify the table structure, use a DESCRIBE statement