Table Index MySQL

mysql>
mysql> CREATE TABLE people
    -> (
    ->     id         INT,
    ->     first_name CHAR(30),
    ->     last_name  CHAR(30)
    -> );
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table people;
Query OK, 0 rows affected (0.00 sec)