creer index

creer index - SQL/NoSQL - Programmation

Marsh Posté le 15-06-2007 à 09:53:22    

CREATE INDEX `IND_TERM` ON `TERME_TER`(`TER_TERME_M`) ASC;
erreur de syntaxe
 
pour creer un index asc  
 
je n'arrive pas à comprendre la doc
 
CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name
    [index_type]
    ON tbl_name (index_col_name,...)
 
index_col_name:
    col_name [(length)] [ASC | DESC]
 
index_type:
    USING {BTREE | HASH}
 
merci

Reply

Marsh Posté le 15-06-2007 à 09:53:22   

Reply

Marsh Posté le 15-06-2007 à 10:05:46    

le ASC doit se trouver dans la parenthèse :  
 
CREATE INDEX IND_TERM on TERME_TER(TER_TERME_M ASC);

Reply

Marsh Posté le 15-06-2007 à 10:38:07    

ASC est surtout inutile, c'est la valeur par défaut, autant la virer :D

Reply

Marsh Posté le 18-06-2007 à 08:16:11    

Merci

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed