MySQL table with 50+ million rows - how to speed up searching using indexes? -


my table structure follows:

create table if not exists data_bussines ( bussines_id bigint(20) unsigned not null auto_increment, name varchar(50) not null,  primary key (bussines) ) engine=innodb default charset=latin1 auto_increment=7059415 ;  

my selects on table have clauses 1 or more of 'name', 'searched on. slow.

you can created clustered index on name. please see question more information mysql how create clustered index?


Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -