Ok, now that I know that the indexes are not automatically used...How would I initiate the use of an index? Let's assume the names of my indexes are "blue", "orange" and "red" the names of the columns I want to attach them to would be "Steve", "Noah" and "Jon". Would I make a select statement to look something like this? Would this even work? How far off am I?
$result = mysql_query("select userid from USERS where blue(Steve)='$Steve' and orange(Noah)='$Noah' and red(Jon)='$Jon'") or die (mysql_error());