Creating an Index with the ALTER TABLE Statement : Index : Table MySQL TUTORIALS


MySQL TUTORIALS » Table » Index »

 

Creating an Index with the ALTER TABLE Statement


mysql>
mysql> CREATE TABLE myTable
    -> (
    ->    ID SMALLINT UNSIGNED NOT NULL PRIMARY KEY,
    ->    Name VARCHAR(40NOT NULL
    -> );
Query OK, rows affected (0.03 sec)

mysql>
mysql> alter table myTable add index(name);
Query OK, rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

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



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Table
» Index