In one of my applications, I have to determine if 'foo_id' is present in the 'foo' column of a table 'foo_table'.
My requirements will be met as soon as I know there is one such 'foo_id' present.
Now, my question is how to restrict this to the first match.
When I checked these queries against mySql EXPLAIN:
- select count(foo) from foo_table where foo=<foo_id>;
- select foo from foo_table where foo=<foo_id> limit 1;
In both of the cases, the number of rows was 58. Is there a way in mySql such that I can restrict the number of rows to 1 (the first match), such that rows are not touched unnecessarily (because I don't need that).
EXPLAINjust execute the query – diEcho Jan 3 at 6:03