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?
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?