primary length index example create constraint mysql indexing

length - ¿Cómo soltar este índice en MySQL?



mysql index length (3)

Fue creado de esta manera:

create table listings( id integer unsigned NOT NULL AUTO_INCREMENT, accountId integer unsigned default null, title varchar(300) not null, country integer unsigned, region integer unsigned, type integer unsigned, price integer, unit varchar(20) not null, priceUSD decimal(12,2), bedrooms integer unsigned, thumbnail varchar(100) default null, keywords text, created datetime, deleted boolean default 0, fulltext index (keywords), PRIMARY KEY (id) ) engine=MyISAM;

¿Cómo soltar ese índice de texto completo que no tiene nombre?

¿Qué sucede si el índice sin nombre es: fulltext index (title ,keywords) ?


Ejecute este comando en el cliente mysql :

mysql> SHOW CREATE TABLE listings;

Le mostrará el DDL de la tabla, incluido el nombre asignado por el sistema para el índice.


ALTER TABLE {your_table_name} DROP INDEX {your_index_name}

O

DROP INDEX {your_index_name} ON {your_tbl_name}


ALTER TABLE listings DROP INDEX keywords;