I have been doing this for quite some time:
SELECT COUNT(*) FROM Table WHERE Condition = *Condition*;
Since I am not interested in the total number of rows returned, I wonder if there is a more efficient way to check if there exist any row(s) that match the condition without letting MySQL scan through the entire table.