If I have a mysql table which had primary ids and another field called gameScore can I do something along the lines of...
SELECT gameScore FROM table1 WHERE id =
I would suggest doing a union instead of the AND (besides, you need to add LIMIT 1 so you do not get ALL rows under 100)