Adding or Dropping Indexes
mysql>
mysql>
mysql> CREATE TABLE mytbl
-> (
-> i INT,
-> c CHAR(1)
-> );
Query OK, 0 rows affected (0.01 sec)
mysql>
mysql>
mysql> SHOW INDEX FROM mytbl;
Empty set (0.00 sec)
mysql>
mysql> DROP TABLE mytbl;
Query OK, 0 rows affected (0.00 sec)
mysql>
Related examples in the same category