标签: mysql
我有查询
select * from table where field='sometext' and state=0 field varchar(50), index state int(1), index (may be 0|1)
查询大约需要2秒钟(表中约有2000000条记录) 当select * from table where field='sometext'花费约0.0002秒的时间 我如何优化表?谢谢
select * from table where field='sometext'
答案 0 :(得分:0)
多列索引是解决方案。 谢谢Raymond Nijland