Creating a Table with an Index : Index : Table Index SQL / MySQL


SQL / MySQL » Table Index » Index »

 

Creating a Table with an Index



  
Drop table CD;

CREATE TABLE CD
(
   ID SMALLINT UNSIGNED NOT NULL,
   Name VARCHAR(40NOT NULL,
   INDEX (Name)
);

Describe CD;

           
       



Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Table Index
» Index