• mysql挖掘与探索------第2章 索引1-2 全文索引FULLTEXT


    A 显示表的所有索引:

      show INDEX from phphi_article;

    B删除索引:
    alter table phphi_article drop INDEX fullwords;

    C添加全文索引:

    alter table phphi_article add  FULLTEXT co(content);

    D使用全文索引:

    1.直接使用

    select id, title from phphi_article where MATCH(content,title) AGAINST('2014');

    但是仅仅支持数字和字母。如果支持中文的话,需要 安装mysqlcft,

    但是只有linux下的安装包、

  • 相关阅读:
    ionic框架
    第3课
    第7课
    第6课
    第5课
    第4课
    第3课
    第2课
    第2课
    第1课
  • 原文地址:https://www.cnblogs.com/legend-song/p/3656122.html
Copyright © 2020-2023  润新知