SELECT STRAIGHT_JOIN u.user_id,u.username,u.email,u.birth_date,u.description,u.registration_ip, i.name AS image, ci.name AS city,c.name AS country FROM users u INNER JOIN user_images i ON i.user_id=u.user_id AND i.zone=“primary” INNER JOIN cities ci ON ci.city_id=u.city_id INNER JOIN countries c ON c.country_id=ci.country_id WHERE u.status=“inactive” ORDER BY u.username ASC LIMIT 0,20
This executes in : 0.0298 which i think is way too much .
i have 174,792 total users, everyone has 1 image , so 174,792 images .
I also have only 1 country with 141 cities .
The output of explain is like :
mysql> ±—±------------±------±-------±--------------------------------±---------------------±--------±------------------±-----±----------------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |±—±------------±------±-------±--------------------------------±---------------------±--------±------------------±-----±----------------------------+| 1 | SIMPLE | u | ref | PRIMARY,fk_users_cities1,status | status | 2 | const | 9368 | Using where; Using filesort || 1 | SIMPLE | i | ref | fk_user_images_users,zone | fk_user_images_users | 4 | dev.u.user_id | 1 | Using where || 1 | SIMPLE | ci | ref | PRIMARY,fk_cities_countries1 | PRIMARY | 4 | dev.u.city_id | 1 | || 1 | SIMPLE | c | eq_ref | PRIMARY | PRIMARY | 4 | dev.ci.country_id | 1 | |±—±------------±------±-------±--------------------------------±---------------------±--------±------------------±-----±----------------------------+4 rows in set (0.00 sec)
Could you tell me if it’s ok or not ?
Because i reach a point in where i don’t know what to think anymore …
Thank you .
Could you please provide me a modified version of it that runs faster ? At least in this case i find out what am i doing wrong .
I have indexes on the columns on which i use where and more as you can see in the explain statement .
I did some progress, maybe you wanna take a look :
SELECT STRAIGHT_JOIN u.user_id, u.username, u.email, u.birth_date, u.description, u.registration_ip, i.name AS image, ci.name AS city, c.name AS countryFROM users uINNER JOIN user_images i ON i.user_id = u.user_idAND i.zone = "primary"INNER JOIN cities ci ON ci.city_id = u.city_idAND ci.country_id = u.country_idINNER JOIN countries c ON c.country_id = ci.country_idWHERE u.status = "inactive"ORDER BY u.user_id DESCLIMIT 0 , 20
And the explain:
id select_type table type possible_keys key key_len ref rows Extra1 SIMPLE u ref PRIMARY,fk_users_cities1,status status 2 const 473 Using where1 SIMPLE i ref fk_user_images_users,zone fk_user_images_users 4 dev.u.user_id 1 Using where1 SIMPLE ci eq_ref PRIMARY,fk_cities_countries1 PRIMARY 8 dev.u.city_id,dev.u.country_id 1 1 SIMPLE c eq_ref PRIMARY PRIMARY 4 dev.ci.country_id 1 Using where
Yes , the username is unique and is marked as being an index .
Also i have another index on status .
That’s because there are few times when i use the username/status together to obtain some data, i mean i use status when i check for accounts to be activated , in the rest i use the username to obtain the user_id(bc i have a site having the url’s like Custom Application Development Software for Business - Salesforce.com ).
I did some tests with an index on username/status then erase it and made an index on username and another one on status and these one was faster than the first one .