我正在制作一个客户表,我需要索引中的 4 个字段。这是表结构。
id、userName、status、email、password、fullName、joinDate(id 是 autoIncrement 和主键)
Index 中的 4 个字段是:用户名、状态、电子邮件、密码
我需要运行的查询是:
select id from table where status='active' and email='emailId' and password='pass' limit 1
select id from table where userName='user' and status='active' limit 1
select fullName from table where id='123' limit 1
我想知道所有这些查询是否都会遵循索引?如果不是,我该如何更改结构以便遵循索引?我正在使用mysql和php。
谢谢