gpt4 book ai didi

php - 为下面的查询创建索引的最佳方法是什么

转载 作者:行者123 更新时间:2023-11-29 21:49:09 26 4
gpt4 key购买 nike

我有这个查询:

select * from `metro_stations`
where `is_active` = 1
and (`title` like '%search%' or `title_en` like '%search%')

如果is_active是TINYINT字段且标题是VARCHAR(255),如何创建有效索引?

这个查询怎么样:

select * from `metro_stations`
where `is_active` = 1
and (`title` like '%search%' or
`title_en` like '%search%' or
`description` like '%search%')

描述字段是否为文本?

最佳答案

对每列使用全文索引。如果在查询中使用“or”则单独使用fts索引,如果使用“and”则混合fts索引(在一个索引中使用多个列) Full Text Index

关于php - 为下面的查询创建索引的最佳方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33829412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com