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)?

推荐答案

Run this command in the mysql client:

mysql> SHOW CREATE TABLE listings;

It will show you the DDL for the table, including the system-assigned name for the index.

Mysql相关问答推荐

JOOQ-如何在一个查询中引用多个(但不是所有)表中的所有字段

MySQL INSERT INSERT ON DIPLICATE KEY UPDATE WITH COMPAY PRIMARY KEY失败

为什么我安装MySQL时不能使用3306端口?

可以优化这个带有重复WHERE子句的查询吗?

根据时间戳分组删除

如何找到每个user_id每个产品的买家类型数量?

java.lang.NullPointerException:无法调用com.proj.my.repository.OrderRepository.save(Object),因为this.orderRepository为空

组平SQL查询结果

MYSQL:如何根据之前的相关记录获取记录

MySQL 8 - MBRContains 不使用空间索引

如何使用同一个表在 2 个字段上左连接

使用 JOIN 计算列中的所有值

是否可以在一个查询中将字符串附加到许多匹配的行

MySQL如何通过外键ID Select 多行?

如何在 MySQL 中搜索多个列?

在 PHP 中获取 MySQL 列的总和

MySQL SELECT 增量计数器

SQL - 如何找到列中的最高数字?

在 Postgresql 中模拟 MySQL 的 ORDER BY FIELD()

什么是mysql的BETWEEN性能超过..?