这是新闻的表格,因此我在字段content
上有全文索引,但是我还需要按日期和其他条件对结果进行排序。
l试图在字段date
上建立普通索引,但是失败了。我用谷歌搜索它,不能同时使用普通索引和全文索引。
所以假设我有一个像这样的表
mysql> select * from test;
+----+--------+------+------------+------------------+
| id | title | tag | date | content |
+----+--------+------+------------+------------------+
| 38 | title1 | a | 1514521364 | looooong content |
| 39 | title2 | a | 1514521364 | looooong content |
| 40 | title3 | b | 1514521364 | looooong content |
| 41 | title4 | c | 1514521364 | looooong content |
| 42 | title5 | NULL | 1514521364 | looooong content |
+----+--------+------+------------+------------------+
5 rows in set (0.00 sec)
现在它在content
上具有全文本索引,在title
,tag
和date
上具有普通索引。我怎么办非常感谢。这个问题困扰了我几天。