MySQL關於order by和group by的優化

order by關鍵字優化 儘可能使用index方式排序,避免使用filesort方式排序mysql create table tblA( #id int primary key not null auto_increment, age int, birth TIMESTAMP not null ); insert into tblA(age,birth) values(22,now()); i
相關文章
相關標籤/搜索