我有一个大型的MySQL数据库。一张表“新闻”有超过600万个条目。两列是阿拉伯语文字。我可以使用以下方法为两列创建索引:
mysql> CREATE FULLTEXT INDEX news_index ON news(news_title, news_text);
但是索引为空,当我尝试执行全文搜索时收到以下错误:
mysql> SELECT news_title FROM news WHERE MATCH(news_title) AGAINST('أردوغان');
ERROR 1191 (HY000): Can't find FULLTEXT index matching the column list
数据库使用InnoDB和UTF-8。列编码为utf8_unicode_ci,我认为可能是问题所在,因此我将两列更改为utf8_general_ci。
创建索引时,索引列表显示:
+-------+------------+---------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+-------+------------+---------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| news | 0 | PRIMARY | 1 | news_id | A | 4293286 | NULL | NULL | | BTREE | | |
| news | 1 | fk_news_1_idx | 1 | news_country | A | 18 | NULL | NULL | | BTREE | | |
| news | 1 | news_index | 1 | news_title | NULL | 4293286 | NULL | NULL | YES | FULLTEXT | | |
| news | 1 | news_index | 2 | news_text | NULL | 4293286 | NULL | NULL | YES | FULLTEXT | | |
+-------+------------+---------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
我也尝试过用以下方法建立索引:
mysql> ALTER TABLE news ADD FULLTEXT(news_title, news_text);
但是,再次没有运气。我丢失了一些东西,当我创建索引时,它运行了一个多小时,所以某事发生了。我想念什么?
答案 0 :(得分:0)
由于全文索引同时应用于两个cellForRowAt indexPath
列,因此您应同时使用news_title,news_text
中的两个to关键字
MATCH()