MySql query to return a random row returns unexpected number of rows

I am trying to get a random word from a long list of words in a MySql table: word_list [id*|wword]. My query looks at the moment like this: SELECT * FROM word_list w where id = (SELECT FLOOR(1 + RAND()*(10-1))) I thought the above query would return one and only one random row with Id… Read More MySql query to return a random row returns unexpected number of rows