It's created this way:
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;
How to drop that fulltext index which has no name?
What if the un-named index is:fulltext index (title ,keywords)
?
ALTER TABLE listings DROP INDEX keywords;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With