how can i make 'order by' use an index? i have the following table:sales with columns id int(4), suma bigint(12), type char(11) and data date with indexes on (id,type) and (suma) im issuing the following statement: select * from vanzari order by suma but it doesnt use the index if i use explain i get type=ALL and using filesort i also tried 'force index' syntax - still the same ...


