PDA

View Full Version : mysql index


ragtek
03-27-2009, 07:16 AM
I'm teaching mysql sql now and wanted to know if i have undestood the indexpart right.

I have a query

SELECT r_invites.*, user.username
FROM " . TABLE_PREFIX . "r_invites
LEFT JOIN " . TABLE_PREFIX . "user AS user USING(userid)
where userid = " . $vbulletin->userinfo['userid'] . " ORDER BY r_invitesid DESC

should now the useridcolumn have a index to be faster because its in the where part?

2. example:

SELECT * FROM " . TABLE_PREFIX . "link where catid = ". $catid . " order by linkid DESC

here the catid should have one or?

Dismounted
03-29-2009, 04:06 AM
You are correct. Indices should be placed on columns that are compared two - however, over use and you will waste space. (Remember that primary keys are indexed automagically.)

ragtek
03-29-2009, 11:29 AM
thx