我有一个客户表,其中包含 customer_id、customer_name、email、password、status 等字段。
目前只有 customer_id 被索引(因为它是主键)
我有几个选择客户的查询如下
select * from customer
where status=1 and email<>''
and email is not null
and password<>''
and password is not null
这运行缓慢,因为我有 130 万条记录所以我正在考虑在电子邮件字段上添加索引。我想知道哪个索引会使简单索引更好,或者我必须使用 FULLTEXT 索引